admin管理员组文章数量:1348057
I have a custom ponent in ExtJs that is a form field (GridField). It displays a grid as a form field and works as expected. The observations are as follows:
When the form is rendered alone (eg. in a window or the first panel in a card layout, everything shows just fine)
When the form is is not the first panel in a card layout or is hidden the first time it is rendered, the field name shows and the space required is left but the control does not show.
I did some inspection and found out that the custom ponent is actually rendered but the width of all the html elements (divs, etc) were 0. They all had the style (width:0). My guess is that it is because the form panel was not visible at the time the rendering was done.
In terms of implementation of the control, I am extending Ext.form.field.Base
. In initComponent
, I simply call this.on('afterrender', this.initControl)
to run the custom code for the additional control after render. Here the input
field is hidden and the grid is rendered where it is supposed to be.
My questions are 1. How do I force the control to re-render so that the width is no longer 0? 2. If the current implementation is wrong, what is the right way to use a grid or another ext ponent as a form field?
I have a custom ponent in ExtJs that is a form field (GridField). It displays a grid as a form field and works as expected. The observations are as follows:
When the form is rendered alone (eg. in a window or the first panel in a card layout, everything shows just fine)
When the form is is not the first panel in a card layout or is hidden the first time it is rendered, the field name shows and the space required is left but the control does not show.
I did some inspection and found out that the custom ponent is actually rendered but the width of all the html elements (divs, etc) were 0. They all had the style (width:0). My guess is that it is because the form panel was not visible at the time the rendering was done.
In terms of implementation of the control, I am extending Ext.form.field.Base
. In initComponent
, I simply call this.on('afterrender', this.initControl)
to run the custom code for the additional control after render. Here the input
field is hidden and the grid is rendered where it is supposed to be.
My questions are 1. How do I force the control to re-render so that the width is no longer 0? 2. If the current implementation is wrong, what is the right way to use a grid or another ext ponent as a form field?
Share Improve this question edited Oct 28, 2014 at 0:23 abatishchev 100k88 gold badges301 silver badges442 bronze badges asked Mar 15, 2014 at 10:02 ritcoderritcoder 3,29410 gold badges45 silver badges63 bronze badges 1- The answer to your question is here: stackoverflow./a/7665964/1763602 – Marco Sulla Commented Jan 27, 2016 at 18:13
1 Answer
Reset to default 4Have you tried to call the "doLayout" method to make sure that the dimensions are reapplied correctly? Re-rendering is not mon in Extjs, usually doLayout does the trick. If it doesn't, there may be something up with your implementation itself.
本文标签: javascriptExtjs Force a component to rerenderStack Overflow
版权声明:本文标题:javascript - Extjs: Force a component to re-render - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743845617a2549062.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论