I’ve got an inline-editable table (thanks to @mario excellent example from a ways back), and for the lookup entity, the framework generates a pickerField - which automatically gets a clear button. I’d like to disable that, if possible.
Hi Jon,
As I understand, you talking about DataGrid inline-editor. There are ways to customize editor field:
- Use
EditorFieldGenerationContext
class (see example here) - Add
@Lookup
entity attibute annotation - Use Pluggable Component Factories mechanism to extends the standard component creation procedure
Regards,
Natalia
1 Like
No - this is a Table, set to editable and with some columns set to editable, thus creating an in-line editable table.
The second and the third ways are applicable for the Table too.
Could you link an example of how those could be used on a Table?