Search Type: Posts; User: stekolla
Search: Search took 0.02 seconds.
-
26 Feb 2009 7:39 AM
Jump to post Thread: Ext 2.0 - Ext Designer by stekolla
- Replies
- 63
- Views
- 37,242
I never thought that this many people would be interested in getting the code, which is why I offered to email it out instead of putting it up on a site somewhere.
But I'm tired of sending out... -
9 Feb 2009 9:20 AM
Jump to post Thread: Ext 2.0 - Ext Designer by stekolla
- Replies
- 63
- Views
- 37,242
Genius! My link doesn't work! Maybe that's why I offered to email it to everyone?
-
4 Feb 2009 8:30 AM
- Replies
- 6
- Views
- 6,428
Get the image element and then reset the url
imgEl.set({src: 'getImage.do?randomness'}); -
4 Feb 2009 7:52 AM
- Replies
- 6
- Views
- 6,428
Could be tricky considering browser caching. Your best bet would be to reset the image's url when the button is clicked and append a random query string to the url to force the browser to reload the...
-
26 Jan 2009 7:15 PM
Jump to post Thread: Tab Background Transparent by stekolla
- Replies
- 8
- Views
- 5,708
I'm not sure how you have everything laid out, but you should be able to solve your problem by adding 'style: {backgroundColor: '#000'}' to the tab panel's configuration.
-
26 Jan 2009 12:56 PM
Jump to post Thread: Tab Background Transparent by stekolla
- Replies
- 8
- Views
- 5,708
You can pass the 'plain' option with a value of true to remove the background on the tab strip.
-
8 Jan 2009 7:23 AM
Jump to post Thread: Ext 2.0 - Ext Designer by stekolla
- Replies
- 63
- Views
- 37,242
pljluca,
If you had bothered to look at the previous post then you would not have needed to ask your question. -
6 Jan 2009 1:24 PM
Jump to post Thread: Ext 2.0 - Ext Designer by stekolla
- Replies
- 63
- Views
- 37,242
I recently changed the hosting service for my website and I never put the files back up. I never meant for the thing to actually be used as is... it was really just a demo that I had been working...
-
25 Jul 2008 6:51 AM
- Replies
- 1
- Views
- 1,069
I came across a little problem the other day when I was trying to override the valueOf method of an object. Consider the following examples:
var NewCls = Ext.extend(OldCls, {
valueOf:... -
23 Apr 2008 9:29 AM
Jump to post Thread: License Change? by stekolla
- Replies
- 758
- Views
- 248,097
I remember when there was talk of moving to a commercial only license when version 1 came out. I was very much against it at that time and tried to make my arguments for keeping a non-restrictive...
-
12 Oct 2007 12:59 PM
Jump to post Thread: Ext 2.0 - Ext Designer by stekolla
- Replies
- 63
- Views
- 37,242
I've put up a new version of the application. Only one new component for now (TabPanel), but I've added a command history and a view of the component hierarchy.
-
10 Oct 2007 9:40 PM
Jump to post Thread: Ext 2.0 - Ext Designer by stekolla
- Replies
- 63
- Views
- 37,242
I work for Rackspace Managed Hosting. The rack extensions are extensions to Ext that I use at Rackspace. There's really not a lot in version 2... In version 1 I had a lot more.
-
10 Oct 2007 7:05 PM
Jump to post Thread: Ext 2.0 - Ext Designer by stekolla
- Replies
- 63
- Views
- 37,242
To everyone:
Thank you all for your compliments so far.
There are two things that I have planned for the application in the immediate future. The first is to finish implementing a command... -
10 Oct 2007 12:28 PM
Jump to post Thread: Ext 2.0 - Ext Designer by stekolla
- Replies
- 63
- Views
- 37,242
After seeing tof post up his GUI builder, I figured I'd make the one that I've been working on available.
Take a look at http://www.stekolla.com/editor/.
There's still a lot that I haven't... -
7 Aug 2007 11:55 AM
Jump to post Thread: Ext 1.1 AIR Window by stekolla
- Replies
- 3
- Views
- 3,021
We've all seen Jack's Ext 2 AIR application, but I haven't seen much for AIR using Ext 1, so I offer an AIR window class based off of Ext 1.1 which can be used instead of the standard AIR chrome.
... -
20 Jul 2007 11:55 AM
- Replies
- 6
- Views
- 1,369
What you're trying to do doesn't make any sense.
In your first example, you define Ext.ux.Callback as a function that returns an object that contains a method called None (You really didn't define... -
18 Jul 2007 8:11 AM
- Replies
- 15
- Views
- 5,245
response.getResponseHeader['X-MyHeader']
-
18 Jul 2007 5:48 AM
- Replies
- 8
- Views
- 2,085
When creating a Form or a form layout (Column or Fieldset) you can set the hideLabels configuration option to true, which will hide the labels for any fields added to that container.
-
18 Jul 2007 5:31 AM
- Replies
- 1
- Views
- 1,161
When you define your west region (since that's the one with the split), you would want to pass it 'useSplitTips: true' and then either 'collapsibleSplitTip: "Your tip"' or 'splitTip: "Your tip"'...
-
18 Jul 2007 5:20 AM
Jump to post Thread: problems with Ext.Ajax.request by stekolla
- Replies
- 1
- Views
- 773
You should check which version of Ext you are using. Version 1.1rc1 includes the Ext.Ajax object (which is just an instance of the Ext.data.Connection), but version 1.0.1 does not.
-
18 Jul 2007 5:16 AM
- Replies
- 8
- Views
- 2,085
What you could do is use a MemoryProxy combined with a JsonReader, or you could set up the JsonReader and pass the variable containing the Json to the Store with the loadData method.
-
17 Jul 2007 7:23 AM
Jump to post Thread: extjs : pylons by stekolla
- Replies
- 1
- Views
- 1,461
The main issue here is that Pylons is a server side framework and Ext is a client side framework. You would create views in Pylons using a server side templating framework like Myghty or Mako, and...
-
10 May 2007 5:52 AM
- Replies
- 7
- Views
- 19,441
The easy solution to this is not to use an array unless you're using numeric indices. Replace the array literal with an object literal and what you're trying to do should work fine.
-
8 May 2007 8:24 AM
Jump to post Thread: Loadable Menu by stekolla
- Replies
- 8
- Views
- 6,119
A small piece I had to write yesterday. Not sure if it's been done already, but I decided I'd put it up here.
Ext.menu.Menu.prototype.load = function (url, params) {
var loader = new... -
30 Mar 2007 10:18 AM
Jump to post Thread: Detect collapse state by stekolla
- Replies
- 5
- Views
- 1,900
You should be able to check the collapsed property of the region. I don't know of a method that will return the status.
Results 1 to 25 of 37
