Hi guys,
I have a question.
I have a from xml populated listbox and want to select by pushing a button all populated items in the list.
this is my code.
the interesting thing is, that this code works before I import xml data, but as soon as i import xml data, it doesnt work anymore.
Do you have any idea, what the problem is and how can I fix it?
and second question. Is it possible deselect single items, when all are selected?
var temp1 = "";
for (i=0;i< PAGE3.ListBox1.length.rawValue;i++){
temp1 = temp1 + ListBox1.getDisplayItem(i) + "\n";
}
ListBox1.rawValue = temp1
Thank you in advance for any help!!
Diana