Categories | Question details Back To List | ||
Making Grid all rows non editable hi, I am in need of functionality where i need to make the grid non editable, like its should be in active .I have used one function mygrid.setActive(false). It isnt working . Could suggest correct function for it Answer posted by dhxSupport on Aug 24, 2009 02:36 To disable grid for edit you can use setEditable(false) method: mygrid.setEditable(false); |