In the code I am presently working on , I would like to process the selection in JavaScript.
The help in the designer says that the selected item will be passed as a JSON object to my function. I suppose that it will look like this ?
Code: Select all
{"fieldName1":"value1","fieldName2":"value2"}
Code: Select all
function processSelected(o){
alert(o.fieldName1)
}
Code: Select all
processSelected(?)
Any help appreciated.
Thanks & regards
Tony C