Do we have a way where I can attachch events to igHierarichalGrid in controller, igHierarichalGrid initializer, I tried to do
grid.ClientEvents.Add("filllookupAuthenticationListModeLookup","filllookupAuthenticationListModeLookup(lookupAuthenticationList)");
but it is of no use.
Hi,
I am checking about the progress of this issue. Please let me know If you need any further assistance on this.
Hello,
In order to trigger custom events for the igHierarchicalGrid (or any other widget) you should add this custom behavior in the corresponding JavaScript files, where the other out of the box events are described. Since igHierarichalGrid is depending on jQuery widgets functionality, you could consider the following helpful:jQuery supports and extends the DOM event model and provides the ability to raise and handle custom events that are not defined in the DOM.http://msdn.microsoft.com/en-us/library/hh404085.aspx
These also could prove helpful: Using events in IgniteUI:http://help.infragistics.com/Doc/jquery/Current/CLR4.0?page=Using_Events_in_NetAdvantage_for_jQuery.html
Developing ASP.NET MVC Applications with igGridhttp://help.infragistics.com/Help/Doc/jQuery/2014.1/CLR4.0/html/igGrid_Developing_ASP_NET_MVC_Applications_with_igGrid.html
When attaching a handler in MVC, you need to use the jQuery UI pattern which is a concatenation of the names of the control and the event in lowercase letter format.http://ko.infragistics.com/help/jquery/igGrid_RowSelectors_Events.html
I want to let you know I am currently investigating the possibilities here and will come back to you with more details.