Create a boolean variable. Set its value True or False, based on requirement. Assign this variable in Editable property of the field, just like we set SourceExpression. And this should work.
Create a boolean variable. Set its value True or False, based on requirement. Assign this variable in Editable property of the field, just like we set SourceExpression. And this should work.
In all field then?
edit:
got error: The identifier 'CaseEditable' could not be found.
CaseEditable = the boolean variable
applied in Field
TestCase.RESET;
IF TestCase.GET("Test Case") THEN BEGIN
CurrPage."Input Actual Text".EDITABLE(("Test Result Req."=1)
AND (TestCase."Attribute Type"=TestCase."Attribute Type"::Text));
CurrPage."Input Actual Numeric".EDITABLE(("Test Result Req."=1)
AND (TestCase."Attribute Type"=TestCase."Attribute Type"::Numeric));
END;
Thought that the above was the culprit. so I just comment out the above function and the page worked.
Am I correct in doing so?
Answers
MCTS - Microsoft Dynamics NAV
In all field then?
edit:
got error: The identifier 'CaseEditable' could not be found.
CaseEditable = the boolean variable
applied in Field
"Never memorize what you can easily find in a book".....Or Mibuso
My Blog
SetFormProperty()
Thought that the above was the culprit. so I just comment out the above function and the page worked.
Am I correct in doing so?
"Never memorize what you can easily find in a book".....Or Mibuso
My Blog