How to exclude/hide Editor fields in the "create" dialog box
How to exclude/hide Editor fields in the "create" dialog box
I have a DataTable that uses the Editor to create and edit a simple table.
Currently, clicking on the "New" button opens a dialog and presents all of the fields defined in the "Fields" option. Once the new row is created in the table, I use bubble editing to maintain most, but not all of the fields.
I would like to remove some of the fields from the dialog box that opens when a new row is created, however, I still want the fields to be editable in bubble editing. How can I make that happen?



This discussion has been closed.
Answers
This thread is similar. You can call
hide()to hide the field (orfield().hide()), and theshow()(orfield().show()) to show again. You can hide ininitCreate, and show inpostCreate,Colin