hello,i’m making an application where i have many fields in the form of a table with rows and column…
i’m using an action button with which i’m opening a picklist listing documents of a view…When i select a document…the document containing status field data gets retreived in currdoc…but in editable form…
i wan t if anyone could help me on making a field from editable to computed on click…or any other alternative…
Thanks in Advance
Subject: Input Enabled Property of a field
You are on the right track:use the Input enabled property and code there a condition with @IsNewDoc.
Subject: RE: Input Enabled Property of a field
not able to achieve…wat i’m tryin is i used a field named flag whose default value is “New”…i hav an action button whose click event sets the flag field value to “Old” a field whose inputEnabled property is defined to @if(flag=“Old”;@false;@true)…not possible…i even did
call uidoc.refresh…
any other alternative
Subject: RE: Input Enabled Property of a field
For me this works:
Form with 2 fields; Automatically refresh fields enabled
Field called Flag; dialoglist; values: “Old” and “New”; Refresh fields on keyword change enabled
Field called Input; text; Input Enabled: @If(Flag = “Old”; @False; @True)
When I create a document with this form and I play with the values of the dialoglist the input field immediately toggles between editable and not.