Skip to main content
1-Visitor
December 23, 2021
Solved

Edit Advance grid using configuration json service

  • December 23, 2021
  • 1 reply
  • 3084 views

Hello Team,

I am trying to make advance grid editable using configuration json property but I am unable to implement that. Please suggest in this issue if anyone have implemented such thing before. I have used the following snippet but unable to achieve grid editable.

 

var config = {
“cellEditingEnabled”: true,
“columns”:
...
}
};

 

“ColumnFormatter”: {
“type”: “boolean”,
“format”: “notext”,
“cellEditor”: {
“enabled”: true, // *{boolean} to indicate whether cell
editing is enable for this column
“type”: ‘checkbox’ // *{string} the editor type to use
for the column.
},
}
..

Best answer by VladimirN

 Hi,

 

Look at some similar previous questions:

1 reply

VladimirN24-Ruby IIIAnswer
24-Ruby III
December 23, 2021
1-Visitor
December 24, 2021

I have used the same configuration in service but still not able to edit the grid using configuration service.