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
170
enable/disable cell of grid on client
posted

hello

i want to know whether there is any way by which i could enable or disable a cell in a row of ultrawebgrid by using javascript.

if i get the cell object on the row, from row.getCell(i) is there something like row.getCell(i).enabled or row.getCell(i).disabled by which i could enable or disable the cell by setting it appropriately.

thanking you,

Parents
No Data
Reply
  • 28464
    Verified Answer
    posted

    Hello,

    Looking at the CSOM (Client side object model) for Cell on the client documented here:

    http://help.infragistics.com/Help/NetAdvantage/NET/2008.3/CLR3.5/html/WebGrid_cell_Object_CSOM.html

    I believe setEditable method could be close to what you need.

Children