We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi There,
I have added one entity as Surgeon_Kit:{ title: 'Surgeon Kit', fields:{ kitName: Fields.text("Kit Name").required(), surgeon: Fields.fixedReference("Surgeon", "User").required(), instruments: Fields.multiReference("Instruments","Surgeon_Kit_Inventory_Item").required(), procedureConfig: Fields.fixedReference("Procedure Configuration", "Procedure_Configurations").required(), inactive: Fields.checkbox("Inactive") }, referenceName:"Surgeon_Kit", beforeUpdate: function(NewEntity, OldEntity) { ... some code... }, filtering: function (Queries) { return Queries.filtering({inactive: false,}); }, permissions: { read: null, write: null, delete: [] } }
Surgeon_Kit:{ title: 'Surgeon Kit', fields:{ kitName: Fields.text("Kit Name").required(), surgeon: Fields.fixedReference("Surgeon", "User").required(), instruments: Fields.multiReference("Instruments","Surgeon_Kit_Inventory_Item").required(), procedureConfig: Fields.fixedReference("Procedure Configuration", "Procedure_Configurations").required(), inactive: Fields.checkbox("Inactive") }, referenceName:"Surgeon_Kit", beforeUpdate: function(NewEntity, OldEntity) { ... some code... }, filtering: function (Queries) { return Queries.filtering({inactive: false,}); }, permissions: { read: null, write: null, delete: [] } }
I want to show only those Users in surgeon fields which are of type Surgeon.
surgeon
How I can achieve this?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi There,
I have added one entity as
Surgeon_Kit:{ title: 'Surgeon Kit', fields:{ kitName: Fields.text("Kit Name").required(), surgeon: Fields.fixedReference("Surgeon", "User").required(), instruments: Fields.multiReference("Instruments","Surgeon_Kit_Inventory_Item").required(), procedureConfig: Fields.fixedReference("Procedure Configuration", "Procedure_Configurations").required(), inactive: Fields.checkbox("Inactive") }, referenceName:"Surgeon_Kit", beforeUpdate: function(NewEntity, OldEntity) { ... some code... }, filtering: function (Queries) { return Queries.filtering({inactive: false,}); }, permissions: { read: null, write: null, delete: [] } }
I want to show only those Users in
surgeon
fields which are of type Surgeon.How I can achieve this?
The text was updated successfully, but these errors were encountered: