Dear,
Is it possible to change "choiseListe" values with javascript.
Exemple il have a choseListe :
Country //// Values
USA us
France fr
Spain sp
When il click in a botton i whant to change this choceListe :
Country //// Values
Morocco ma
Portugal pt
............
Thanks
Solved! Go to Solution.
Views
Replies
Total Likes
Hi,
Listboxes and dropdowns can be scripted against without too much difficulty.
You would need something like this in the click event of the button:
listbox1.rawValue = null; //clear previous choice
listbox1.clearItems(); //clear the list items
listbox1.addItem("Moocco", "ma"); //add new list items
listbox1.additem("Portugal", "pt");
Hope that helps,
Niall
Views
Replies
Total Likes
Hi,
Listboxes and dropdowns can be scripted against without too much difficulty.
You would need something like this in the click event of the button:
listbox1.rawValue = null; //clear previous choice
listbox1.clearItems(); //clear the list items
listbox1.addItem("Moocco", "ma"); //add new list items
listbox1.additem("Portugal", "pt");
Hope that helps,
Niall
Views
Replies
Total Likes
thanks !!!
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies