Editor no draw on grid after checkbox click

Editor no draw on grid after checkbox click

travisdiamond01travisdiamond01 Posts: 1Questions: 1Answers: 0

I am using licensed Editor 1.5.6 with multiple checkboxes on the grid rows. I am calling separate editors for each check box and the values are changing correctly. However, because the grid gets drawn after each call to a checkbox change, if > 1 checkboxes are checked/unchecked too quickly, it causes the row to be displayed incorrectly.

I simply want the call to the editor to NOT force the grid to redraw and only update the DB. Seems simple but have not been able to prevent the draw from happening on the grid. Is that possible?

Answers

  • allanallan Posts: 63,813Questions: 1Answers: 10,516 Site admin

    Use the none option for drawType in the form-options object - e.g.:

    editor.inline( this, {
      drawType: 'none'
    } );
    

    Allan

This discussion has been closed.