Hi!
I'm setting pbShowWaitDialog in a button subclass which is used in a dynamic object panel, but can't get it to show a wait box. What am I doing wrong? Also tried with SetActionMode in the OnLoad, but didn't work either.
DF19.1, webapp not mobile if that matters
Code:
Class cPrintTimeBtn is a cWebButton
    Procedure Construct_Object
        Forward Send Construct_Object
        Set psCaption to (fTranslate("Skriv ut"))
        Set pbShowWaitDialog to True
        Set psWaitMessage to "Skriver ut..."
    End_Procedure