set value Field in Dialog when lookupeditor dropdown changes #5422
Unanswered
havvanur160401046
asked this question in
Help
Replies: 1 comment
-
Try something like this in your constructor in abcGrid.ts this.form.TurId.changeSelect2(() => {
YourModule.xyzService.Retrieve({
EntityId: Q.toId(this.form.TurId.value)
}, response => {
this.form.StatisKar.value = response.Entity.Kar.value;
});
}); |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
When the turId value in satısrow changes, I want the profit value of that type in turrow to be displayed in the profit field. I have to write my sql query and if so how can I do it
For example, I want the profit value of the tour that has ID 1 when the turID is 1
or
Is it possible to do something like this
Beta Was this translation helpful? Give feedback.
All reactions