Hello,
Is there a way to have events, such as RadDatePicker.ClientEvents.OnDateSelected or RadListBox.OnClientSelectedIndexChanged, handle functions with arguments, apart from "sender" and "eventArgs"?
The following code doesn't do it completely right:
Thanks in advance.
Is there a way to have events, such as RadDatePicker.ClientEvents.OnDateSelected or RadListBox.OnClientSelectedIndexChanged, handle functions with arguments, apart from "sender" and "eventArgs"?
The following code doesn't do it completely right:
RadListBox rlb =
new
RadListBox();
rlb.OnClientSelectedIndexChanged =
"ToSomething('Aaa', 'Bbb', 'Ccc')"
;
function
DoSomething(a, b, c)
{
//code
}
Thanks in advance.