Community Tip - Did you get an answer that solved your problem? Please mark it as an Accepted Solution so others with the same problem can find the answer easily. X
I am using Windchill PDMLink Release 12.1 and Datecode with CPS 12.1.1.2
How to set value on ComboBox on onchange of the Table builder.
tableActionComboBox.addJsAction("onchange", "" );
Here are the errors that I faced
N/A
Solved! Go to Solution.
Hi TDT,
Written a JavaScript to set selected value on combobox and register in windchill-all.js .
In java builder just call the javascript function.
tableActionComboBox.addJsAction("onchange", "updateTableComboBoxes( '" + comboBoxId +"', '"+ objectId+"', '" +issueId + "' )" );
Now issue is resolved,
Thanks
Thanks
Hi TDT,
Written a JavaScript to set selected value on combobox and register in windchill-all.js .
In java builder just call the javascript function.
tableActionComboBox.addJsAction("onchange", "updateTableComboBoxes( '" + comboBoxId +"', '"+ objectId+"', '" +issueId + "' )" );
Now issue is resolved,
Thanks
Thanks
