Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
125
URGENT - UltraWebGrid not supporting IE10 for setSelectd()
posted

I am working on web application in which I am using Infragistic grid with radio button. During this I am trying to use method of Grid-row that is setSelected() for selecting radio button, but it is not working with IE10 and give error. 

Below are some code from Java script through which got error. This whole process is happening at client side. 

tempName is grid name

var objects_Grid = igtbl_getGridById(tempName);  -- objects_Grid is grid object

var row;

row_1 = objects_Grid.Rows.getRow(i);  

row_1.setSelected(true); -- Here it give me error, look like setSelected() is not working. 

Also find some work around like using row._select property but its not working in IE10.


Above one code snippet is used for fetching grid record which is selected through the Radio selection. 


Earliest reply will be highly appreciated.

Regards,

Bhavin Pandya