Answered
Hello,
I'm creating a "dynamic" table in livecycle and I would like to change my table cells based on a choice of another cell, for example:
cell1
drop-down list
cell2
this cell have to change, depending on the choice made with the first cell (it will gray and become unusable)
This point is OK, i create an action, and here is the source code auto-generated :
if ($.boundItem(xfa.event.newText) == "VĂ©hicule personnel") { oTargetField = this.resolveNode("Montant_devise"); oTargetField.access = "readOnly"; }
This point is OK, but my problem is :
if the user wan't to change the value selected in the drop down list, cells don't become re-usable ...
i just tried to change this logical operator " ==" by an comparison operator " != " but it doesn't works ...
Thanks for advance, and excuse me for my dirty english ....
here a solution if someone have this problem :