Community Tip - Learn all about PTC Community Badges. Engage with PTC and see how many you can earn! X
I want to recall the table builder on button click in jsp page. how can i do in windchill 12.1
Hi @SB_10904295
Thank you for your question!
I’d like to recommend to bring more details and context to your initial inquiry.
Please consider including screenshot(s) to better understand what you are trying to do in your process.
Please refer to this guideline to make your questions more likely to receive a quick and useful answer.
This will increase your chances to receive meaningful help from other Community members.
Thank you for your participation and please let me know if you need further assistance!
Best regards,
Hi @SB_10904295
It depends how you define the table, but generally you call a JavaScript method to reload the table.
function submitFilterSearchParametersEdit() {
var params = {
editComents: "true",
avTask: "<%=avTask%>"
};
PTC.jca.table.Utils.reload("cz.aveng.Table.AVCustomTableBuilder", params, false);
}
CS210133 - How to use Javascript API "PTC.jca.table.Utils.reload" in Windchill
CS406160 - How to refresh original jsp page/table in customized form processor code
PetrH