hi
I have a linked table in a form named “stroj”. On form change I want to update or filter data that are displayed in the linked table. Is that possible?
console.log(doo.model.stroj); doesn’t display anything like the data I can see on the screen.
I can see that data are coming from POST call to https://app.tabidoo.cloud/api/userdata/getUserData.
What I want to achieve to filter out some rows being displayed in the linked table based on entered data on the form. Is that possible?
For example I want to via script filter out “kompresor” row
I tested
doo.model.stroj.filterForDropdown = ['!kompresor'];
but it removes all rows. Probably because of this error
ERROR TypeError: e.replace is not a function
parseUserCriteria app.tabidoo.cloud/main-R52LODCF.js:1500
loadData .tabidoo.cloud/main-R52LODCF.js:1500
trying
doo.model.stroj.filterForDropdown = null;
doo.model.stroj.filterForDropdown = ['!kompresor'];
trying
doo.model.stroj.filterForDropdown = null;
doo.model.stroj.filterForDropdown = "x_ID === 'kompresor'";
didn’t help either
Thank you
Radek
