-
1 Nov 2010 8:02 PM #1001
Frame Messaging
Frame Messaging
hello,what i need to include js files in the Frame Messaging,I can't do it now.
-
15 Nov 2010 11:02 AM #1002
Hi, Doug!
I've got subdomain issue that is just crushing me..
There's a need to contact an Iframe on a different subdomain. What i do is set document.domain on both my page and iframe that I load to the relaxed version of my domain. The problem is, file uploades just stop working. As I see the problem is, that Ext creates an Iframe and the form there. Since document.domain is not set there, it can't communicate with the main page, where I had to set it.
How do I set the document.domain on the Iframe being created by Ext Form Uploader? I couldn't find any hint in the sources. How do people solve this problems? Sure I'm not the only one.
Thanks for your time!
-
1 Feb 2011 3:24 PM #1003
Problem
Problem
Hi,
I successfully loaded a component in previous versions. Today after some time I downloaded the latest code and created an update.
My code looks like this:
When I try to open a window I get this error:PHP Code:
var iframe = {
id : 'pdf-auto',
xtype : 'iframepanel',
defaultSrc : null,
frameCfg : {id : 'pdfAuto'},
loadMask : {
hideOnReady: false,
msg: 'Loading Document...'
},
ref : '../../pdfAuto',
iconCls : 'loading-indicator',
autoLoad:{
// url : 'Reporter/' + node.attributes.attributes[0].nodeId,
url : 'http://www.google.com',
method : 'POST',
params : params,
submitAsTarget : true
}
}
win = new Ext.Window({
title: 'Report',
width: 800,
height: 600,
maximizable: true,
closable: true,
border: false,
layout: 'fit',
items: [
iframe
]
});
What could be the case?PHP Code:p is undefined
[Break on this error] this.initPageX = p[0] - dx;
ext-all-debug.js (line 20083)
x is undefined
[Break on this error] y = isNaN(x[1]) ? y : x[1];
Best regards,
Bojan
-
8 Feb 2011 1:16 PM #1004
"be dom-ready..."
Doug Hendricks
Maintaining ux: ManagedIFrame, MIF2 (FAQ, Wiki), ux.Media/Flash, AudioEvents, ux.Chart[Fusion,OFC,amChart], ext-basex.js/$JIT, Documentation Site.
Got Sencha licensing questions? Find out more here.
-
8 Feb 2011 3:54 PM #1005
I understood that the version 2.1.5 is supported on ExtJS 3.1.1 higher. ExtJS 3.3. is higer version than 3.1.1.
Does this means that the 2.1.5. version is supported just for the 3.1.1.?
Best regards,
Bojan
-
14 Feb 2011 12:56 PM #1006
I tested this on IE9 RC and doesn't seem to be working. Anyone can confirm if it works on IE9 with Ext2?
-
29 Apr 2011 12:22 PM #1007
Ok this might be a fix for IE9 if anyone still uses this...
Find line:-
Change to:-Code:var rstatus = (e && typeof e.type !== 'undefined' ? e.type: this.dom.readyState);
Code:var rstatus = (e && typeof e.type !== 'undefined' && e.type !== 'readystatechange') ? e.type: this.dom.readyState;
-
2 May 2011 12:43 PM #1008
Accordion panels misbehaving when I include miframe-min.js
Accordion panels misbehaving when I include miframe-min.js
Hi,
I'm cobbling together my first real sencha app and it has been fantastic so far. Now I need to dynamically add tabs to a panel which then load a given url. I can make this work perfectly using the miframe plugin .... except .... now all the panels in the main menu section (accordion) keep expanding. I can click on one and it's content disapears and the - icon changes to a + but the space it occupied re-opens pushing the rest of the panels back out of view. This is probably a simple problem but I've been googling about for a while without finding anything. If there is already a posted solution to this, I apologize.
EDIT: Could this be a compatability issue .... ext version is 3.3.1
Thanks
Jim
-
10 May 2011 5:38 PM #1009
@jbarry:
MIF introduces (and Ext 3.3.1 now supports natively) a new hideMode : 'nosize'. Make sure all your tabs get the same value."be dom-ready..."
Doug Hendricks
Maintaining ux: ManagedIFrame, MIF2 (FAQ, Wiki), ux.Media/Flash, AudioEvents, ux.Chart[Fusion,OFC,amChart], ext-basex.js/$JIT, Documentation Site.
Got Sencha licensing questions? Find out more here.
-
10 May 2011 5:43 PM #1010"be dom-ready..."
Doug Hendricks
Maintaining ux: ManagedIFrame, MIF2 (FAQ, Wiki), ux.Media/Flash, AudioEvents, ux.Chart[Fusion,OFC,amChart], ext-basex.js/$JIT, Documentation Site.
Got Sencha licensing questions? Find out more here.


Reply With Quote



