Error page expects an object

0
My app was running great without any errors. I changed some containers and moved some text and suddenly I get an error CE1568. All buttons and navigation which lead to the page I was editing now suddenly expect an object. I don’t get why this happened as I changed nothing related, I think. How can I solve this?   The button and navigation menu item both have ‘open page’ as their on-click action. Which has worked in all my previous projects.  
asked
2 answers
0

Hi Pybe,

you can call a microflow from the element (say the button that is calling the page), and now instead of directly opening the page from the button(Onlick),
you can call a microflow instead, into that microflow you can create the required object (object of Counters) and then pass that object to the desired page.

 

So, effectively, the button will now call the newly created microflow ,and this microflow will in turn open the page for you.

 

Hope this helps

answered
0

Hi Pybe,

 

On your Page, you have an Object of Counters.

Select onChange -> Create Object Counters then GoToPage.

It worked before because you had not a Dataview or similar from Counters.

 

What do you want to do on this Page? 

 

answered