Community Tip - New to the community? Learn how to post a question and get help from PTC and industry experts! X
hi all,
how to abrogate mvcTable' Scroll bar , for example:
table show all datas, don't drag Scrollbar.
Hi Chao,
Is this a custom table? You can specify the table height to show certain number of objects without table scroll bar while calling the builder as shown below:
<mvc:tableContainer compId="tableID" height="1000"/>
Also, I believe you can set the height using JavaScript after the table is rendered.
var tableCmp = Ext.getCmp(tableId);
if(tableCmp.getHeight()<200) {
tableCmp.setHeight(500);
}
Regards,
Bhushan