Hello,
I am having difficulty determining how I load option elements into an edit_text popUpEdit dialog text field.
this is an edit_text element of the dialog object that has its popUpEdit property marked, true.
It seems to me like this should be a combo-box.
I have my dialog working fine, I have the drop down list appearing, I just can't load any items into it?
I have tried using an object of elements like you do for the list list_box object:
dialog.load({"conv":{"item1":1, "item2":2, "item3":3}});
I have tried using an array like so:
dialog.load({"conv":["item1","item2","item3"]});
but I can't seem to get anything to work...There doesn't seem to be anything written about this for this purpose - though I can't see what else you would use it for.
Any help would be appreciated.
Thank you.
-Andrew
Example 3 snippet:
dialog.load({
subl:
{
"Acrobat Professional": +1,
"Acrobat Standard": -2,
"Adobe Reader": -3
}
})
},Yours:
dialog.load({"conv":{"item1":1, "item2":2, "item3":3}});
and:
dialog.load({"conv":["item1","item2","item3"]});
Suggested:
dialog.load({
conv:
{
"item1": 1,
"item2": 2,
"item3": 3
}
})
},
George Kaiser