Hi i want to remove all the records which delete flag is checked. in the below screenshot.
Announcement
Collapse
No announcement yet.
filter the modal values on basis of status
Collapse
X
-
filter the modal values on basis of status
Last edited by abhilash.kumar.niit; 10-16-2024, 11:12 AM. -
I want to remove the selected record how can i do that?
below is the code behind this screen.
this.formModel.setDefs({
fields: {
'workStepId': {
type: 'link', // field type
view: 'views/fields/link', // optional, to define custom view
required: true, // field param
entity: 'CWorkStep', // Link it to the Workstep entity
select: {
name: 'name',
filter: {
deleteFlag: false
}
},
multiple: false,
filters: {
'activeWorkSteps': true
}
},
}
});1 Photo
Comment