I have a Dynamic table with a header row, Section and footer row.
Section has the following cells(columns): Cell1 (drop down with locations), button (to remove row), CCode (Color Code RAL), CName (color name).
I'm starting with 1 row.
now what I want to do is, when they select in CCode e.g. RAL 1003 (rawValue "1") then in CName the name "signal yellow" (rawValue "1") should appear.
I'm using javascript
My first problem is how do I know which value is chosen, because this isn't working:
if (this.rawValue == 1)
{
xfa.host.messageBox('Today')
}
and second how do I set the value in CName
because this only sets it in the first CName cell:
xfa.form.DataSheet.TechnicalInformation.Markings.THatchPatterns.Section.CName.rawValue
= '1';
Please help me, I'm totally lost