Grid Filter Logic #7338
Unanswered
Vinith-kumar47
asked this question in
Help
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
in the below, I have shared my code to filter the logic in the grid based on the ownerfilter.
protected createToolbarExtensions() {
super.createToolbarExtensions();
let ownerFilter = this.addQuickFilter({
field: fld.OwnerId,
type: Serenity.LookupEditor,
options: {
lookupKey: Master.OwnerRow.lookupKey
}
}) as Serenity.LookupEditor;
}
My requirement is,
1.while opening the grid, Do no filter to show all the do number lookup values, which is working fine.
2.After selecting the OwnerFilter , it has to show the Do number specific to the selected Ownerfilter and that is also working fine.
3.the issue is, after removing the ownerfilter selection, Do no filter loads all the lookups but not able to select the Do filter. it becomes unselectable only when the ownerfilter is removed. If I select the owner filter again then the Do filter is selectable.
Attached HTML code from the browser console,
Attached screenshot:
Beta Was this translation helpful? Give feedback.
All reactions