I had my WebScriptManager in the master page and i was not getting any javascript intellisense for the js csom. I moved the script manager to my actual page and I still don't get it.
what do I need to do?
I'm catching the event on Cell_ExitingEditMode and I'm trying to find the row and the values of some columns in the grid.
For me, I kept them, but still the intellisense does not work.
The webScriptManager is in a master page
Regards
Imad
I removed the parameters. I didn't think they are required for intellisense to work.
I moved the webscriptmanager to the page and it's working. Thanks.
Also, I am told that intellisense will not work in a master page. Even with Microsoft ajax stuff.
-Dave
Hi,
Where are the /// <param> comments. These are what actually allow the intellisense to appear. Did you delete them or did they not appear?
///<param name="sender" type="Infragistics.Web.UI.WebDataGrid"></param>
///<param name="eventArgs" type="Infragistics.Web.UI.CellValueChangedEventArgs"></param>
the version is 10.3.20103.1013
function GridPositions_Editing_CellValueChanged(sender, eventArgs) { ///<summary> /// fires when an editable cell value is changed and lost focus ///</summary>}
so if I type eventArgs._cell ... i don't get _cell in intellisense.