
Hello,
I need to create a new list in the Warehouse mobile app, I would like to use the new Framework ProcessGuide.
Any experience with it ? It's possible to create a new list. The standard processes usingProcessGuide don't have a list.
Thanks for your sharing
For creating list, you can go on adding controls in page builder, it will work for Label and text boxes,
but for button
I haven't tried this, May be you can try and let me know
For example to create and recognise a work list,
in page builder while adding step step.createAction("WorkId" + WorkIdNum)
And in ProcessGuideStep, executeStep
if (substr(_actionname, 1, 6) == "WorkId")
{
get work id using substr(_actionname, 7, length)
execute required code
}