Hi,
How to unselect a previously selected row in a UltraGrid. (for single/multiple rows )
Please reply me
Hello,
Try this code:
var oGrid=igtbl_getGridById('<% =uwgYourGrid.ClientID%>');var currentRow= oGrid.getActiveRow();
currentRow.setSelected(false) ;
P.S. You've asked the question in the wrong forum, this is the right one http://forums.infragistics.com/forums/128.aspx
mateia said:Hello, Try this code: var oGrid=igtbl_getGridById('<% =uwgYourGrid.ClientID%>');var currentRow= oGrid.getActiveRow(); currentRow.setSelected(false) ; P.S. You've asked the question in the wrong forum, this is the right one http://forums.infragistics.com/forums/128.aspx
This is the right forum for questions about UltraWinGrid. To de-select a row in the grid, simply set the Selected property to false.