I have radio button group BR , this radio group contain 4 radio buttons :
1- NEW: NOT VISIBLE
2- FORWORD :NOT VISIBLE
3- BACKWORD : NOT VISIBLE
4- REMOVE_BACKWORD
I want to display only the fourth radio button remove_backword on the form based on certain condition for the current record
I tried the next steps :
1- in when_new_form_instance trigger :'
SET_RADIO_BUTTON_PROPERTY('NT_CALL.BRO','REMOVE_BACKWARD',VISIBLE,PROPERTY_FALSE);
2- in post_query trigger on block level :
IF (:NT_CALL.BRO = 2 ) THEN
SET_RADIO_BUTTON_PROPERTY('NT_CALL.BRO','REMOVE_BACKWARD',VISIBLE,PROPERTY_TRUE);
END IF ;
the problem is : the radio button is displayed for all records after dispaying it first time . i want to be dispayed for the current record and hidden for the other records.
please help , thank you .