Jump to content


This is a ready-only archive of the InstallSite Forum. You cannot post any new content here. / Dies ist ein Archiv des InstallSite Forums. Hier können keine neuen Beiträge veröffentlicht werden.
Photo

Update Edit Box after DoAction


4 replies to this topic

mgraefe

mgraefe
  • Members
  • 4 posts

Posted 15 May 2001 - 14:40

I created a dialog with an edit box.
The property of edit box is 'PROP1'.
A pushbutton on the same dialog call a CA with DoAction event  which changes the property 'PROP1'.
How can I update the edit box?

Leigh Ravenhall

Leigh Ravenhall
  • Members
  • 269 posts

Posted 16 May 2001 - 00:08

You can get this to work by creating a duplicate dialog.  After the DoAction, you load the new dialog, which will display the updated value of PROP1.

To the best of my limited knowledge, there is no way to refresh values without reloading a form.


CedricD

CedricD
  • Members
  • 7 posts

Posted 22 May 2001 - 14:17

Create a CA which change the value of a Property ( 'TEXTEDIT' by example)
In the dialog behavior of your button,call your CA and
after, add this line :

   Event                 Argument                Condition
 [PROP1]            [TEXTEDIT]                      1

It works well with my setup so...


Knolselder

Knolselder
  • Members
  • 2 posts

Posted 11 April 2002 - 10:11

Thanx for your help man! Your sollution is the only good one. The duplicate dialog is so lame ...

Thanx!