Announcement

Collapse
No announcement yet.

filter the modal values on basis of status

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • filter the modal values on basis of status

    Hi i want to remove all the records which delete flag is checked. in the below screenshot.



    Last edited by abhilash.kumar.niit; 10-16-2024, 11:12 AM.

  • #2
    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
    }
    },
    }
    });

    Comment

    Working...
    X