문제

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