django25
4th March 2009, 13:44
Sir/Madam
I have a customised session.
On opening the session I get the form where I need to enter data. However if I do not enter any data & click on the Continue buton , it would execute for the entire range of default values. Is there any way to prevent this.
Or is it possible to have the Continue button Inactive by default & only on enetring some value it becomes Active.
Regards
Django

george7a
4th March 2009, 14:34
Hi,

You can check the range in side the continue choice section. Then you can decide if you want to continue or not. For example:
choice.cont.process:
on.choice:
if not isspace(range.f ) then
| continue
endif
I hope it helps,

- George

_Ralph_
4th March 2009, 15:40
you can use

disable.commands("cont.process") this will inactivate the button.

django25
6th March 2009, 06:22
Thanks George, it worked