A thread to share some coding techniques for QuickApps?
Because QAs are "long running scenes" (they don't have to be loaded and restarted for every event) - it is actually worthwhile to build up a library of "nice to have" code and include them in QAs.
Please login or register to see this link.
Please login or register to see this link. s
Please login or register to see this link.
Please login or register to see this link. client
List of posts:
Introduction to the QuickApp ana
Ok, back to code.
The QD has support for UI buttons, labels, and sliders like the old VD (no improvements here).
We declared handler in the QD, so if we have a button with id 'button1' it will call
function QuickApp:button1Clicked() .... end
when we click on the button.
Disclaimer: Still some bugs on the HC3 that makes these UI's not working on mobile apps, and sometimes flaky even in the web gui... but that will hopefully be fixed.
So, on to an exam