This question is locked. New answers and comments are not allowed.
We would like to monitor a radcombobox selected index changed event.
The combo causes a postback which then renders a report with a response.end event.
In my server side code I am trying to attach to the OnClientSelectedIndexChangedEvent.
The startTrack event does not seem to get hit. I think the postback (auto) event is causing an issue..
Any ideas?
1.// Populate RadComboBoxStudentActions2. var hardwareActions = (RadComboBox)e.Item.FindControl("RadComboBoxHardwareActions");3.// Determine how often users access the reports dropdown4. String hardwareActionsclientScript = String.Format("startTrack('{0}.{1}.RadGridHardware.selectReport');", HttpUtility.HtmlEncode(oUser.DistrictName.Replace(" ", "")), HttpUtility.HtmlEncode(oUser.LoginName));5. 6. hardwareActions.Attributes.Add("OnClientSelectedIndexChanged", hardwareActionsclientScript);