I am using version 11.1.
I have an ultrawebgrid. when the default row selection is changed, the newly selected row is not highlighted.
Any way in javacript to force this selection? I have tried
igtbl_setActiveRow(myGrid.ASPID, igtbl_getElementById(myGridId+"_r_"+(row.rowIndex-1)));
and
igtbl_selectRow(currentGrid.ASPID, row.id, true,true)
Hi kulsumarif,
Please feel free to contact me if you need further assistance.
Best Regards,
Petar IvanovDeveloper Support EngineerInfragistics, Inc.http://ko.infragistics.com/support
Thank you for posting in the community.
Can you try using something similar to:
igtbl_getGridById("UltraWebGrid1").Rows.getRow(1).select(); igtbl_getGridById("UltraWebGrid1").Rows.getRow(1).activate();
igtbl_getGridById("UltraWebGrid1").Rows.getRow(1).select();
igtbl_getGridById("UltraWebGrid1").Rows.getRow(1).activate();
Note that the UltraWebGrid control is now outdated and as of .NetAdvantage 2011 Volume 2 is no longer included in our product package. I would suggest that you consider switching to the WebDataGrid/WebHieararchicalDataGrid. More information regarding these controls is available at:
http://help.infragistics.com/NetAdvantage/ASPNET/2011.2/CLR4.0/?page=Web_WebDataGrid_WebDataGrid.html
Additional samples demonstrating the features of these grids can be found at:http://samples.infragistics.com/aspnet/
Please let me know if this helps.