A row or view has four states:
You can use this expression to control the display or rows in the UI. Like to display new rows in diff colors.
- New
- Modified
- Un-Modified
- Initialized
You can use this expression to control the display or rows in the UI. Like to display new rows in diff colors.
Ex: #{row.row.entities[0].entityState==0 ? 'background-color:yellow' : ''}Now in RowImpl, you can access the state using:
Ex: byte entityState = this.getEntity(0).getEntityState()