I have an Ext Js panel that I am adding to my main TabPanel. The panel I am adding contains a FormPanel as one of it's items and inside the FormPanel I have a Name field. What I want to do is change the name of the Tab based on the name in the form field.

The problem is that if I call the FormPanel's getForm().getValues() inside of the panel's initComponent, I get the following javascript error:

Uncaught TypeError: Cannot read property 'dom' of undefined

If I do this outside of initComponent (e.g. on a button press) everything works fine. After doing some testing, I think the issue is that the FormPanel isn't actually rendered yet (and thus the dom doesn't exist), getValues() fails. However, I can't seem to figure out a way to get my FormPanel's values from the Panel on load.

I tried to listen for events. I tried:

this.detailForm.on('afterrender', function () { alert('test'); });

but doing this showed that AfterRender is called prior to the form actually being rendered (it's not visible on the screen). Changing the alert to my custom function handler produces the previous dom exception. I attempted to use the activate and enable events instead of afterrender, but even though the API says that FormPanel fires those events, the alert('test') never gets called.

I can't seem to find any way for my panel to get the inner FormPanel's values upon loading my panel. Does anyone have any ideas?

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

Using getFieldValues() in place of getValues() will collect values by calling each field instance's getValue() method instead of by reading from the DOM. This should allow you to get your values regardless of the form's rendered state.

link|improve this answer
Both seem to work, but I'm marking this as the answer because I think it's better than relying on the afterlayout event – KallDrexx Dec 10 '10 at 5:58
feedback

I've got the same problems on one of my projects, I managed to fix it using the afterlayout event.

link|improve this answer
feedback

I'd give setting .deferredRender:false a try.

Ext.TabPanel.deferredRender

Probably best to roll out of your afterlayout changes, then test with just a straight deferredRender:false config item.

I believe the problem is caused because the inactive tabs are not rendered until they become active. In your scenario, you cannot get the values, because they don't exist until the tab is activated/shown.

Setting deferredRender:false will render the items within all tabs. There could be a performance hit by setting deferredRender:false, so testing you must do.

Hope this helps.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.