You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I have master form and 3 child grid on tab. 2 child pass value fine, but one grid not refresh. I look many times to find difference, the value is passed but grid is not refresh on load and show all records.
On getGridCanLoad() - I check exist of value and it's there.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi,
I have master form and 3 child grid on tab. 2 child pass value fine, but one grid not refresh. I look many times to find difference, the value is passed but grid is not refresh on load and show all records.
On getGridCanLoad() - I check exist of value and it's there.
Why grid is not refresh ?
Please help
ON GRID:
ON DIALOG:
private ZaduzenjaDGrid: ZaduzenjaZaposlenikaGrid;
private ServisDGrid: ServisOGrid;
private KarticaDGrid: KarticaGrid;
this.ZaduzenjaDGrid = new ZaduzenjaZaposlenikaGrid(this.byId("ZaduzenjeZapGrid"));
this.tabs.on('tabsactivate', (e, i) => {
this.arrange();
});
this.ServisDGrid = new ServisOGrid(this.byId("ServisOGrid"));
this.tabs.on('tabsactivate', (e, i) => {
this.arrange();
});
this.KarticaDGrid = new KarticaGrid(this.byId("KarticaGrid"));
this.tabs.on('tabsactivate', (e, i) => {
this.arrange();
});
protected afterLoadEntity() {
super.afterLoadEntity();
Beta Was this translation helpful? Give feedback.
All reactions