Hello
I would like to add a new entry into an existing select list (with existing entries) programmatically (Javascript). The most obvious way would be:
apex.item( "MYSELECTLIST" ).addValue( "mydisplaytext", 100 );
or maybe the other way around:
apex.item( "MYSELECTLIST" ).addValue( 100, "mydisplaytext" );
Both ends up with: desktop_all.min.js?v=19.2.0.00.18:5 No default handling defined for addValue
I coudln't find a clear/proper example for adding an entry into a SELECT List in the Apex documentation and the Internet.
Anyone has an idea how to add an entry into a Select List ?