-
@Condor,thank you for reply!
My code in FF3 has all the effect what I need.
1)My form.xf.CheckerInfoDisplayForm is a custome component that show plain html table, in IE7 the form is not display sometimes or leave the display area blank!
2)But why in FF3 it is ok?
3)A layout:'slide' with easing:'none' still has the slide effect!
-
So are you saying your form does not show up? The slide layout is working but your form is not showing up in IE7?
-
(Belated reply!)
Anything I release on the forums is always under the WTFPL.
Keeping in mind the licensing issues with Ext public extensions of course. But if anyone is going to be knocking at your door with the copyright police it won't be me.
Peace.
-
Quote:
Originally Posted by
ckr
Well Done NeonMonk!
Another silly demo
here.
That was awesome, thanks ckr. Demonstrated it really well. :)
-
Works in Firefox for me, but Opera 9.62 animates the outgoing panel and the inbound one never appears.
Code:
layoutConfig:{
renderHidden:true,
deferredRender:false
}
Without renderHidden, a TreePanel nested within fails.
-
Im playing with this in 3.0.0, and after you slide a card in then out, if you resize the browser the hidden panel is displayed a little.
-
This is a nice extension but the latest version of Opera isn't supported. It is an Opera float/clear bug/issue. The subsequent cards are being stacked.
Here is the quick, dirty, simple downgrade fix.
Code:
...
if (this.activeItem != item) {
if (this.activeItem) {
if (this.compatMode || Ext.isOpera){ //opera downgrade fix
this.activeItem.el.setStyle('display','none');
item.el.setStyle('display','block');
}else{
...
}
...
-
Is this extension compatible Ext JS 3?