umadevi
28th March 2008, 15:19
Hi All,

I am Having the Date Field in a Table (Its A mandatory).
I created The Maintain Session and Kept The Field Type As Display.

If I Click On The New Button On The Session The Field Should Be in The
Input Mode

How I need To Do That , Any One Can Help U You Out?


Thanks in Advance.
Uma

bdittmar
28th March 2008, 16:17
Hi All,

I am Having the Date Field in a Table (Its A mandatory).
I created The Maintain Session and Kept The Field Type As Display.

If I Click On The New Button On The Session The Field Should Be in The
Input Mode

How I need To Do That , Any One Can Help U You Out?


Thanks in Advance.
Uma


Hello,

define the field as input field.

field.date:
before.display:

attr.input = false

before.input:

if choice = add.set then
attr.input = true
else
attr.input = false
endif

An input only can be done in add.set mode.

Regards

umadevi
31st March 2008, 07:36
Hello,

define the field as input field.

field.date:
before.display:

attr.input = false

before.input:

if choice = add.set then
attr.input = true
else
attr.input = false
endif

An input only can be done in add.set mode.

Regards


Even I done Like This also But
i am uable to view that in a display mode when i opened the session
it always in Input mode

en@frrom
31st March 2008, 13:25
Please post your script, so we can identify possible mistakes...

umadevi
31st March 2008, 15:46
Thanks For Ur Response

I got That By Enabling And Disbling the Form fields

with The Field Events.

Thank You So Much.