Search Type: Posts; User: evanc
Search: Search took 0.03 seconds.
-
8 Oct 2010 11:03 AM
Jump to post Thread: displayfield doesnt work by evanc
- Replies
- 8
- Views
- 934
The API has a list of all of the xtypes under the Ext.Component class: http://dev.sencha.com/deploy/touch/docs/?class=Ext.Component
An Ext.form.TextField set to disabled might work for you. -
8 Oct 2010 10:52 AM
Jump to post Thread: displayfield doesnt work by evanc
- Replies
- 8
- Views
- 934
Aha, you know what, display field doesn't exist in Sencha Touch. You're thinking of ExtJs.
Looks like someone's just ported it though:... -
8 Oct 2010 10:44 AM
Jump to post Thread: displayfield doesnt work by evanc
- Replies
- 8
- Views
- 934
Try creating it normally, without the xtype:
new Ext.form.DisplayField({
name: 'text',
label: 'First Name',
value: 'Hua'
}; -
30 Jun 2010 4:14 PM
- Replies
- 1
- Views
- 744
Ext version tested:
Ext 3.2.1
Adapter used:
ext
jquery -
24 Feb 2010 4:02 PM
- Replies
- 3
- Views
- 1,106
I assume that when you say '' you're indicating an invisible unicode string.
try doing something like
if (v.charCodeAt(0) == 118) {
//whatever
}
I don't know what the charcode for '' is... -
24 Feb 2010 3:58 PM
- Replies
- 4
- Views
- 1,428
You could just read the source for "lowpro" and figure out how they did it.
off the top of my head: spawn a new iframe and call document.write() inside it to start the throbber, and... -
24 Feb 2010 3:44 PM
- Replies
- 12
- Views
- 3,091
We use many files and then we have an Ant build that concatenates them all and runs the whole thing through a minifier.
Generally we have one component per file, sometimes we do multiple per file... -
24 Feb 2010 12:01 PM
Jump to post Thread: Smaller ExtJS without IE6 support by evanc
- Replies
- 53
- Views
- 10,494
Why is this thread still going? It's been shown numerous times that the effect of supporting IE6 on other browsers is trivial.
-
24 Feb 2010 11:57 AM
- Replies
- 12
- Views
- 3,091
Do you have some kind of automated minifying process set up?
-
24 Feb 2010 11:48 AM
- Replies
- 4
- Views
- 1,211
"%2b" is a url encoded "+" sign. Just run it through urldecode() or whatever equivalent function you have on the server.
-
24 Feb 2010 11:43 AM
- Replies
- 3
- Views
- 1,106
I would add a convert function to the field definition of your grid's store to change "" into \u00a0. see http://www.extjs.com/deploy/dev/docs/?class=Ext.data.Field
-
23 Feb 2010 4:14 PM
Jump to post Thread: EXPRESS_INSTALL_URL by evanc
- Replies
- 3
- Views
- 950
I think that express install is going to allow the user to upgrade flash if he or she already has flash installed. Otherwise, how's the user's browser going to interpret the .swf file without flash...
-
23 Feb 2010 4:11 PM
- Replies
- 5
- Views
- 3,608
surely there's a way to urldecode a string in Java/struts?
-
23 Feb 2010 4:04 PM
- Replies
- 41
- Views
- 78,371
How should I change this to make it work in Ext 3.x?
-
23 Feb 2010 3:45 PM
Jump to post Thread: Get specific index of an object? by evanc
- Replies
- 2
- Views
- 775
The first argument passed in to "load" is the store itself. You can just do store.getAt(0).get('image').
Are you really using a whole jsonStore just to get a single element of a JSON string? Do... -
23 Feb 2010 1:21 PM
- Replies
- 11
- Views
- 4,838
I expect it's related to Ext.DatePicker
-
22 Feb 2010 10:02 AM
- Replies
- 14
- Views
- 3,217
I agree with tolichsvs- it shouldn't be there. initialConfig should be the Initial Configuration, ie whatever got passed in at creation time.
-
22 Feb 2010 9:55 AM
Jump to post Thread: How to add Variable in Title:??? by evanc
- Replies
- 5
- Views
- 748
title: 'Detail Report For: ' + store});
"store" is (presumably) an Ext.data.Store object, not a string. You need to determine how to get the student's name as a string (you might have to read the... -
22 Feb 2010 9:53 AM
- Replies
- 15
- Views
- 3,924
Add listeners to the Ext.Ajax object. http://www.extjs.com/deploy/dev/docs/?class=Ext.Ajax
-
19 Feb 2010 4:21 PM
- Replies
- 10
- Views
- 4,076
the params config option will accept a string, if you want to do it that way. That's the only way you'll be able to send multiple arguments with the same name, though you should probably avoid that...
-
19 Feb 2010 12:03 PM
- Replies
- 2
- Views
- 558
using a store with array fields is sub optimal, because I lose selection handling, I lose a lot of the nice events (ie, instead of subscribing to the dataview's click event and then just getting the...
-
19 Feb 2010 11:47 AM
Jump to post Thread: Done my first ExtJS project by evanc
- Replies
- 6
- Views
- 1,933
Seems like the documentation for the change event on RadioGroup is pretty clear. It tells you when it fires and what arguments are sent to listeners. What should it say?
edit: whatever, I don't... -
19 Feb 2010 11:29 AM
Jump to post Thread: Done my first ExtJS project by evanc
- Replies
- 6
- Views
- 1,933
Ext doesn't support JSONP. You're looking at an example of a user-written extension using Ext Core.
Why do you need an example of the setWidth() method? Do you not understand what it does? Or do... -
19 Feb 2010 11:11 AM
- Replies
- 3
- Views
- 798
you can put an onload event on the image. WebKit will only fire the event if you set the src of the image dynamically.
-
19 Feb 2010 10:54 AM
- Replies
- 1
- Views
- 1,034
type your search term and then add site:extjs.com
Results 1 to 25 of 95
