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.
Hi marcgh,
What version of visual studio do you have? And what version and build number of infragistics components do you have? Did you generate the event using the stub generation so it has /// comments?
regards,
David Young
Sorry, it's visual studio 2010 with 10.3.
yes I did generate the event using the stub generation but when I try to find any values i don't get any intellisense.
Hi,What is the build number of our controls? Do you have the latest Service Release? The number I'm looking for is the last four in 10.3.20103.xxxx. If it is a service release, it will be in the 2000's. Could you also attach the stub generated here?
-Dave
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.
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.
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>