This is a question related to using javascript with crm 4 2011 online
I created an optionset -status: open,closed and a onchange event handler that calls the function run with the context as parameter.
In js i tried the following and more:
function run(selectedItems)
{
var s = selectedItems[0];
}
But i always get an undefined variable.
How can get the selected value from a optionset?
Thanks
EDIT:
i tried
function run() {
alert("hello");
var texter = Xrm.Page.getAttribute("new_state_request").getSelectedOption().text;
alert(texter);
}
just now. Gettin this: Error in userdefined event of this field. field:new_state_request event:onchange error:undefined