cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - You can change your system assigned username to something more personal in your community settings. X

Translate the entire conversation x

The issue about Custom TableBuilder

SW_10353216
3-Newcomer

The issue about Custom TableBuilder

I am using Windchill PDMLink Release 12.0 and Datecode with CPS 12.0.0.0

Hello! I'm encountering an issue during development.
I'm using TableBuilder to create a table where one column displays radio buttons and another column shows text input fields for user input. However, when the table exceeds a few hundred rows, the selected radio buttons and input text disappear after scrolling. I suspect this is caused by Ext.js re-rendering the table and not preserving the modified states of the radio buttons and input fields, but I’m unsure how to fix this.
If you’ve faced similar issues or have a solution, I’d greatly appreciate your advice. Thank you!
4 REPLIES 4

Take a look at this article: https://www.ptc.com/en/support/article/CS317066

This might help....

All right.

I will try it.

Thank you for your help.

HelesicPetr
22-Sapphire II
(To:SW_10353216)

Hi @SW_10353216 

@RandyJones is right there is usualy trouble with buffer

 

following script helped me to solve similar issue. I increase the buffer to 10000 and it was enough in my case.

<SCRIPT>
PTC.wizard.getContentAreaPaddingHeight = PTC.wizard.getContentAreaPaddingHeight.wrap(function(orig) {
return orig.call(this) + 12;
});

Ext.ux.grid.BufferView.prototype.getVisibleRowCount = function(){
return 10000;
};

Ext.override(Ext.ux.grid.BufferView,{
doClean: Ext.emptyFn
});
setUserSubmitFunction(function(){return PTC.validation.callAJAXValidation("idOfTheRenderingTABLE");});
</SCRIPT>

 PetrH

Hello @SW_10353216,

 

It looks like you have some responses from some community members. If any of these replies helped you solve your question please mark the appropriate reply as the Accepted Solution. 

Of course, if you have more to share on your issue, please let the Community know so other community members can continue to help you.

Thanks,
Vivek N.
Community Moderation Team.

Announcements

Top Tags