Version: 2019.2.619
I am noticing that with Inline mode I can specify a per column Editable for the visible columns in the DataSource section, ie:
.DataSource(dataSource => dataSource
.Ajax()
.Model(model =>
{
model.Id(p => p.ITEM_LISTID);
// When Edit Mode is Inline this is applied.
model.Field(p => p.ITEM_LISTID).Editable(false);
}
)
However, when in Popup mode, I have to specify [ScaffoldColumn(false)] on the Model properties that shouldn't be editable. However, ScaffoldColumn(false) columns can no longer be used as Grid columns.
It would be nice if Popup mode only used the columns defined in the Columns markup and followed the Ediable similar to the Inline mode.
Am I missing something?
Peter