Hello, I am building the onClick attribute of a HyperLink column within a RadGrid on the ItemCreated event, such as
Thanks Kerry
editLink.Attributes[
"onclick"] = "return ShowAttachForm();";
This calls a Javascript function to open a RadWindow. I now need to pass parameters to the javascript function but I am having problems accessing the value of the other DataBoundGrid columns...it seems like the columns do not yet have a value. How can I access the value of a column on the ItemCreated event of a RadGrid so I can do something like
editLink.Attributes[
"onclick"] = String.Format("return ShowAttachForm('{0}','{1}');", dataItem["JobNo"].Text, dataItem["ClientNo"].Text);
Thanks Kerry