Hello,
How do we pass a severside object (e.g a listbox) to a client-side javascript function?
I have an idea that it could be this:
//string variable
string objectID;
//get the object's control identifier
objectID = listbox.ClientID;
//pass the object's control identifier
ctl1.attribute["onClick"] = "returnContextMenu({0},objectID);";
Is it correct?