Search Type: Posts; User: Drayton
Search: Search took 0.03 seconds.
-
4 Feb 2010 4:31 AM
- Replies
- 3
- Views
- 1,147
What Animal said..
http://www.extjs.com/learn/Ext_FAQ_Grid#How_To_modify_the_styling_of_a_row -
4 Feb 2010 4:17 AM
- Replies
- 1
- Views
- 1,432
Something like this?
new Ext.Window({
title: 'jsontest',
width: 400,
height: 400,
closable: true,
items: [{
xtype: 'form', -
3 Feb 2010 6:53 AM
Jump to post Thread: Dynamically loaded panels by Drayton
- Replies
- 3
- Views
- 757
Ok, here's a simple example:
JSON encoded ext component config in dyntest1.js:
{"xtype":"panel","title":"Post loaded panel 1","html":"Hello, Im a dynamically loaded panel"}JSON encoded ext... -
3 Feb 2010 6:01 AM
- Replies
- 2
- Views
- 1,454
The short answer is that it should probably be getPositionEl instead of getDomPositionEl
The long answer depends on your ext revision and the context of that call. -
3 Feb 2010 5:39 AM
Jump to post Thread: Dynamically loaded panels by Drayton
- Replies
- 3
- Views
- 757
eval() is afaik your only choice when post-loading js.
Another approach would be to specify the different panels as lazy config objects, serve them on request as json and simply load the json... -
3 Feb 2010 5:20 AM
- Replies
- 1
- Views
- 3,150
You can set headers as an option to form.submit();
Quick and dirty example that can be run directly in the firebug console:
new Ext.Window({
title: 'test',
closable: true,
height:... -
3 Feb 2010 4:44 AM
Jump to post Thread: Fire on Panel by Drayton
- Replies
- 2
- Views
- 696
The 'show' event only fires when you actually call the panels show() method.
This will make the panel render, but will not trigger the show event:
new Ext.Panel({
renderTo: document.body,
... -
19 Jan 2010 4:51 AM
- Replies
- 6
- Views
- 1,791
You could try to use the TreePanel append event
Something like:
append: function(tree,parent,node,idx){
if(node.attributes.current == 1){
node.expand();
} -
14 Jan 2010 7:14 AM
- Replies
- 0
- Views
- 767
Here's a small plugin i wrote to make the behavior of Ext.tree.MultiSelectionModel fit a group selection scenario a little better.
When a node is selected all other nodes in the direct path (both... -
8 Jan 2010 5:05 AM
- Replies
- 0
- Views
- 486
When async nodes loads I want to manipulate them based on the status of the parent node.
In other words, if the parent is checked I want the childs to be checked and selected when they load.
The... -
8 Jan 2010 3:55 AM
- Replies
- 2
- Views
- 734
Thank you :)
-
8 Jan 2010 3:24 AM
- Replies
- 2
- Views
- 734
I'm trying to multiselect childs when a parent is checked, but I end up getting only the last child from getSelectedNodes().
ctrl+click multiselection works fine.
checkchange:... -
9 Dec 2009 3:03 AM
- Replies
- 870
- Views
- 259,947
I'm also having trouble in this section of the code:
When running miframepanel as tab and close the tab in Chrome and IE8 the following triggers an error:
Ext.isFunction(s) && ( s = src());... -
25 Nov 2009 12:59 AM
- Replies
- 11
- Views
- 2,164
*bump*
-
19 Nov 2009 6:03 AM
- Replies
- 9
- Views
- 2,291
@condor
Thank you. I had a feeling that I was missing something and I apologize for posting a false bug report.
@animal
Your post is redundant and your sarcastic comments only serves to hurt the... -
19 Nov 2009 5:11 AM
- Replies
- 9
- Views
- 2,291
Maybe I'm the one at fault here, but consider the following test case:
var store = [['1','Label 1'],['2','Label 2']];
var w = new Ext.Window({
closable: true,
width: 400,
height: 400,... -
13 Nov 2009 1:45 AM
- Replies
- 4
- Views
- 1,911
Tested in:
FF 3.5.5 with Firebug 1.4.5
IE 8.0.6001.18828
Trying to resize a column in ListView makes a mess of the ListView display.
To reproduce, simply use the ListView example and try to... -
12 Nov 2009 3:31 AM
- Replies
- 1
- Views
- 1,782
for (var i = 0, len = imData.length; i < len; ++i) {
var eArea = document.createElement("area");
eArea.shape = "rect";
... -
11 Nov 2009 6:15 AM
- Replies
- 870
- Views
- 259,947
Hi
I'm having all sorts of trouble with cache being undefined in miframe 2.0.1 and ext 3.0 r5611
Example:
cache._elCache is undefined
http://iea.local/iea/lib/js/iea/src/ux/miframe-debug.js... -
7 Sep 2009 11:11 AM
- Replies
- 1
- Views
- 975
Ext version tested:
Ext 3.0 rev 5294
css used:
only default ext-all.css -
7 Sep 2009 5:22 AM
- Replies
- 8
- Views
- 1,862
Confirmed working
Thank you -
4 Sep 2009 3:38 AM
- Replies
- 8
- Views
- 1,862
I'm also voting for a fix :)
-
29 Apr 2009 3:57 AM
- Replies
- 1,016
- Views
- 303,844
addToPage: function(o){
var col = IEA.Tabs.tabPanel.getActiveTab().items.items[0];
col.add(o.ownerCt.remove(o.scope.wp, false));
o.ownerCt.close();
col.doLayout();
}, -
29 Apr 2009 3:03 AM
- Replies
- 1,016
- Views
- 303,844
Hi
I have a situation where a mif-panel is displayed in a Ext.Window for preview and when the user chooses to do so it's moved into a column in a tabPanel.
addToPage: function(o){
... -
28 Apr 2009 1:54 AM
Jump to post Thread: slide effects on panels by Drayton
- Replies
- 0
- Views
- 554
Hi
What is the proper way of adding the slideIn and slideOut effects to a panel that is initially rendered hidden?
Thx
Results 1 to 25 of 104
