editableInline property

bool get editableInline

Whether the cell opens the standard inline text editor (text / number / date / time / combo). Picker-only kinds (select, color) and the non-editable kinds (readonly, computed) return false.

Implementation

bool get editableInline =>
    type == EditableColumnType.text ||
    type == EditableColumnType.number ||
    type == EditableColumnType.date ||
    type == EditableColumnType.time ||
    type == EditableColumnType.combo;