I want to inline edit in Date And IsWorking Column

I want to inline edit in Date And IsWorking Column

Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Mithun PradhanPosted Dec 7, 2023, 4:31 AM
How I only enable Date and IsWorking column editable
Blocked AccountPosted Dec 6, 2023, 8:37 PM
Hi Mithun,
If you want to enable editing for a date column in the EJS Grid, you need to make sure that the date column in your model has the DateTime data type. Replace your Date field column with the following line.
The
formatattribute is set to "yMd" to specify the date format (year/month/day). You can adjust the format according to your preference.To enable editing for a checkbox column in the EJS Grid, you need to configure the EJS Grid column for the checkbox field and handle the editing accordingly. Replace below lines with your existing IsWorking e-grid column defination.
Then you need to handle the values in .cs file.
Hope it will work.