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
45
selectedRows.Length is retruning 0
posted

Hi,

I am using Infragisiting ultrawebgrid 6.1 version.  With CSOM i am trying to get the selected rows  using selectedRows method as shown below.

               grid=igtbl_getGridById(clientId);
                oRows=grid.SelectedRows;
                if(oRows.length>0)
                {
                   // Process the rows
                }

Here even though user has selected an row , this selectedRows.length is returning 0. Am i missing anything over here. I used bands in this ultrawebwrid. Does it make any difference?