Hi All,
I am using jDeveloper 12.2.1.0.
My Application is based on Entity Objects and Entity Based View Objects. In one of the table there is a column called type: having 2 values complete and target. This is selectOneChoice component in page. On selection I need to check or uncheck the checkboxes based on the value of selectOneChoice. How to achieve this.
I am able to disable the checkboxes using the Expression
disabled="#{viewScope.IR_ReferenceViewBean.TypeLovBind.value eq 'C' ? true : false}" partialTriggers="soc1"
But when I am giving the same expression for Value of checkbox then upon target selection checkbox coming as single line like this.

If its complete its coming like this.

How to fix this issue. Am I missing anything.