Community Tip - Stay updated on what is happening on the PTC Community by subscribing to PTC Community Announcements. 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
