Page 1 of 1

Change values in the tableview without opening the detailview

Posted: 2019-05-01 14:20
by Alisson
Would be great if we have an option to change values in the tableview without having to enter in the detailview, in my case most of the time after a row is created I just need to change a date or a status, so would be really convenient to just have a dropdown for status or a datepicker for the date field in tableview to do this, without opening the detailview. Not sure if this is possible but would be a nice feature.

Re: Change values in the tableview without opening the detailview

Posted: 2019-05-01 14:53
by jsetzer
Have a look at the contenteditable-attribute:

https://www.w3schools.com/tags/att_glob ... itable.asp

In combination with some client side AJAX and server side PHP you should be able to POST data to the server and update your database.

Regards,
Jan

Re: Change values in the tableview without opening the detailview

Posted: 2019-05-01 15:51
by Alisson
Thanks Jan, I'll look into this solution, I've been using xcrud to do this and work ok, but if I can do this inside appgini code would be great.