-
1 Jan 2013 11:17 PM #1
In google chrome, hidden items is not showing.
In google chrome, hidden items is not showing.
Hi All,
I am using Extjs 3.4,
setting hidden:true for an item(grid) and when i click on a button,want to show this grid
for that i am using
grid.show(); or
grid.setVisible(true);
It is working fine in firefox,but not working in Google Chrome.
Any Idea?
Thanks & Regards
Manoj Parida
-
2 Jan 2013 8:49 AM #2
Moved to Ext JS 3 bugs, instead of GXT 3 bugs.
-
2 Jan 2013 9:45 PM #3
Thanks for moving.
May i know is this a bug in Extjs 3.4 and we are not able to show items.
As per i gone through in forum,it is a bug in Extjs 2.2,please look into this link http://www.sencha.com/forum/showthre...ue-not-working
give any suggestion as my application is developing in Extjs 3.4
Thanks & Regards
Manoj Parida
-
5 Feb 2013 4:20 AM #4
Cool,for working purpose it is acheived by one technique,below mention steps
Initially hidden:true for this grid.
1- Get the id of grid by
2- Now to showing grid by click on button so we have to write this lineCode:Ext.getCmp('grid-id');
3- Make a call to doLayout() for this componet.Code:Ext.getCmp('grid-id').getEl().show();
Now our hidden items is displayed in both firefox and chrome,if we want to again hide this item,just using hide()
Now it is hiding the item.Code:Ext.getCmp('grid-id').hide();
In chrome it is working smoothly also in other broswer.
Cheers@
Thanks & Regards
Manoj Parida
Thank you for reporting this bug. We will make it our priority to review this report.


Reply With Quote