Skip to main content
15-Moonstone
May 3, 2018
Question

Advanced Grid - Editable Boolean Column

  • May 3, 2018
  • 1 reply
  • 1740 views
Hi, I have a problem with configuration of Advanced Grid columns via JSON. My goal is to create one editable column, which should have boolean type, so it seems to be ok according to the doc. Now the JSON config: First part: var result = { "cellEditingEnable": true, "columns": { .... Second Part (under column def): "description": "....", "columnFormatter": { "type": "boolean", "format": "notext", "cellEditor": { "enabled": true, "type": "checkbox" } } I tried avery possible comination, format as checbox, notext, remove format, remove type and it is still not editable at all. Any ideas? Any example of valid config JSON with editable field? Thanks & Best Regards, Adam

1 reply

5-Regular Member
August 9, 2018

You have to use "cellEditingEnabled" instead of "cellEditingEnable". Then it works.