dialog - NewDialog with ProgressBar to execute CustomAction on loading -
dialog1: contains 2 radio boxes. - when user selects radiobox1 moves on wixui_minimal workflow - when user selects radiobox2 moves custom ui starts dialog2
dialog2: contains 1 progress bar - want custom action ca1 called when dialog opens
i tried following in dialog1: - publish newdialog open dialog2 order 1 - publish doaction ca1 order 2 ca1 not called in case.
i tried following in dialog2 - placed custom action outside dialog control , dialog reference. ca1 not called in case.
is there way execute ca1 on opening dialog2?
"i tried following in dialog1: - publish newdialog open dialog2 order 1 - publish doaction ca1 order 2 ca1 not called in case."
i had tried above in dialog2 had used installexecutesequence instead of installuisequence.
by using installuisequence follows able results needed:
<installuisequence> <custom action="ca1" before="executeaction"/> </installuisequence>
Comments
Post a Comment