Skip to main content
1-Visitor
August 25, 2016
Question

How to edit data from a grid widget

  • August 25, 2016
  • 1 reply
  • 2363 views

I've seen that the grid widget has this property that makes a column's data editable.

In my grid I have two columns: NameOfTheThing (string) and View (boolean)

I want View to be editable.

What did I do:

  1. Checked "IsEditable" Property
  2. In Configure Grid Column I checked Editable under the "View" column format

What is my problem:

I don't know how to set the changing runtime.

If I edit my checkbox on the grid I can't actually see my data changing.

1 reply

22-Sapphire I
August 25, 2016

The Grid also has 'Edited Table' that is the full content of the Grid, you need to take that content into a Service to then do the actual data update(s)

fmanniti1-VisitorAuthor
1-Visitor
August 26, 2016

Yes, but I didn't understand which service because I tried with Set Properties (which is the service I've used so far to set new values of properties) but it doesn't bind.

Do I have to make my own service?