Basicly, I have a window contains two tabs, the second tab is a GridPanel and is initially inactive.

I want to programly select two rows of this GridPanel(via CheckboxSelectionModel) by clicking a "show window" button , but found it not working. There will be a javascript error thrown and no rows selected. After I manually clicked the second tab to make the grid visible, everything works well.

what's the most possible mistake I made? I'll paste the code soon if it's not a common mistake for extjs beginner.

有帮助吗?

解决方案

This is because your tabpanel will not render any components that are not visible (i.e., any components in your second tab in this case).

If you add the following config option to your Ext.TabPanel it should fix your problem:

deferredRender: false

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top