I am using monday sdk in my dashboard widget app, I want to get filtered data for boards. I tried listening to itemIds event but it does’nt retunr anything.
Just to make sure we’re on the same page here, are there any boards connected to this widget app? Perhaps this is working in the board view because the app only has to reference a specific board which is derived from app context, but in the case of widgets, you’d need to reference boards as well.
I’d really appreciate further input from you here so that we could investigate this behaviour further
Yes there are boards connected and I can even do those filters and it changes that battery widget(default monday widget) but I am not able to catch the data changed using recommended method in my own app.
monday.listen(“itemIds”, (res) => {
console.log(res);
});