cancel
Showing results for 
Search instead for 
Did you mean: 

How to change the attribut of Form in Review Form in ISR

Former Member
0 Kudos

Hi,

We have to change the attributes of text fields of form ( e.g disabling the text field ) once user hits the Review Form button on MSS page

Please let me know how to do it .

Thanks

Manish

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Manish,

You may write the Formcalc scripting for the respective field.

//Check ISR control parameters for read/write access

if($record.CONTROL_PARAM.ISR_MODE == "DISPLAY" |

$record.CONTROL_PARAM.ISR_FORM_VIEW =="ISR_APPROVE" | <b>$record.CONTROL_PARAM.ISR_REVIEW == "true" )</b>

then

this.access = "readOnly"

else

this.access = ""

endif

Hope this helps.

Thanks and Regards,

Anto.

Former Member
0 Kudos

Thanks Antony,

In which event ( of form field ) should I write this code , I am sure it will not work in Initialize event as i tried a sample code over there .

Please let me know

Thanks

Manish

Former Member
0 Kudos

FormReady, Formcalc, Client :).

Pls update if this solved your problem, Manish.

Thanks and regards,

Anto.

Answers (0)