Hi.I am using below code to get selected Item from a select box which is there under ruleset directly.item = IWDatacapture.getItem("/Owner");alert(item);label = item.getOptions()[item.getValue()].text;alert(label);No success any problem with this. This I took from FormAPI guide ?Thanks.
Can you post your datacapture.cfg also make sure you have the pathid set on the item you are trying to retrieve.Pradeep
Please find the attached dct. In this case is pathid mandatory ?Thanks.Sanjeev
var item = IWDatacapture.getItem("/Owner");if (item) { var chosen = item.getValue(); alert((chosen != null)? item.getOptions()[chosen].text : 'Nothing Chosen!');}
var item = IWDatacapture.getItem("/Owner");if (item) {var chosen = item.getValue();alert((chosen != null)? item.getOptions()[chosen].text : 'Nothing Chosen!');}