Search Type: Posts; User: carol.ext
Search: Search took 0.06 seconds.
-
23 Apr 2013 1:46 PM
- Replies
- 2
- Views
- 130
Try length instead of count. Or better yet play with it in the Firebug console, "alert" isn't very useful for figuring out what your object looks like.
-
24 Aug 2012 8:19 AM
Jump to post Thread: Store's behaving strangely by carol.ext
- Replies
- 2
- Views
- 4,055
If I got to the code of interest...
store.load({params: param.idTiersPourAdresse});
var first = store.first();
var rec = first.data;
form.getForm().setValues(rec);
...... -
27 Jun 2012 1:20 PM
Jump to post Thread: Usage Store with parameters by carol.ext
- Replies
- 4
- Views
- 365
Did it work?
I have used extraParams as part of the proxy config
extraParams: {
name: values.name
},
and later like this : -
27 Jun 2012 12:33 PM
Jump to post Thread: GroupSummary not working by carol.ext
- Replies
- 1
- Views
- 169
What version of Ext JS are you using? If 4.x, then take a look at the grid Features ...
http://docs.sencha.com/ext-js/4-1/#!/api/Ext.grid.feature.GroupingSummary... -
27 Jun 2012 12:19 PM
Jump to post Thread: Usage Store with parameters by carol.ext
- Replies
- 4
- Views
- 365
Take a look at extraParams on the proxy.
-
27 Jun 2012 12:15 PM
- Replies
- 2
- Views
- 251
Looks like you need an ajax proxy rather than a jsonp proxy.
Check the API.
http://docs.sencha.com/ext-js/4-1/#!/api/Ext.data.proxy.Ajax... -
19 Jun 2012 5:58 AM
- Replies
- 4
- Views
- 1,301
I could not read your first post. Based on your second post, did you try putting the reader on your proxy instead of on your store?
-
18 Jun 2012 8:45 AM
Jump to post Thread: Multiselect field by carol.ext
- Replies
- 1
- Views
- 286
I didn't read from your 2.x link, but have you taken a look at the multiselect demo?
http://docs.sencha.com/ext-js/4-1/#!/example/multiselect/multiselect-demo.html -
5 Jun 2012 1:30 PM
- Replies
- 2
- Views
- 414
Did you try setting deferEmptyText to false? By default it is true.
As I recall, that worked in previous versions. I haven't tried it in 4.x. -
18 May 2012 12:32 PM
Jump to post Thread: Extjs4 Store by carol.ext
- Replies
- 1
- Views
- 364
I am not an expert at this, but you have not received a response...
Looks like you are using a jsonp proxy. Do you need to? If not, try using an ajax proxy instead.
... -
18 May 2012 11:48 AM
Jump to post Thread: extjs 4 theme by carol.ext
- Replies
- 6
- Views
- 1,816
http://docs.sencha.com/ext-js/4-1/#!/guide/theming
-
12 May 2012 7:55 PM
- Replies
- 3
- Views
- 467
I am not sure if IE8 is considered a legacy browser, but did you generate the images using sencha slice as described in the theming docs? See the section on "Supporting Legacy Browsers" in :
... -
10 May 2012 9:13 AM
Jump to post Thread: Not able to load json to grid by carol.ext
- Replies
- 1
- Views
- 264
It looks like loadData() does not use the root. I looked at the source code. In the documentation there is a link right to the source code for the method, so it's easy to take a look.
So, that... -
27 Apr 2012 11:15 AM
- Replies
- 4
- Views
- 880
I don't think anyone is going to provide you with code per your requirements.
You may want to start by asking small questions to get past whatever issues you are having. -
26 Apr 2012 6:38 AM
- Replies
- 1
- Views
- 247
Sounds like you don't need to be using a Viewport if you don't want it to render to document body since that is what a Viewport does.
From the Viewport documentation : -
24 Apr 2012 7:58 AM
- Replies
- 5
- Views
- 626
Not sure I understand.
1. Is this the json returned from http://127.0.0.1:8000/task/ ? What do you mean it is not executing?
[
{
"pk": 1,
"model": "hmak.stuinfo", -
24 Apr 2012 7:23 AM
Jump to post Thread: Form submits empty textfield by carol.ext
- Replies
- 8
- Views
- 1,136
Since you have not posted any code I am not sure if you are talking about empty string ("") or the emptyText configured for fields in your form.
-
3 Apr 2012 8:50 AM
Jump to post Thread: numbercolumn format by carol.ext
- Replies
- 2
- Views
- 534
A quick look at the code shows it uses Ext.util.Format to do the formatting.
Looking around Ext.util.Format documentation it says you can override the thousand and decimal separators in a locale... -
28 Mar 2012 8:16 AM
Jump to post Thread: Extjs4 loadData by carol.ext
- Replies
- 2
- Views
- 361
From the Store API on loadData,
See API for more details. -
28 Mar 2012 5:33 AM
- Replies
- 5
- Views
- 3,414
Spring Framework Reference v. 3 - Chapter 15 Web MVC - Section 15.3.2.4 Binding request parameters to method parameters with @RequestParam
The Spring Framework Reference is available online as I... -
27 Mar 2012 12:19 PM
- Replies
- 5
- Views
- 3,414
We use @RequestParam in the method signature.
We are passing a String, maybe yours is int. This is basically from the "Web MVC framework" chapter of the Spring 3.0 docs. Not sure if your param is... -
27 Mar 2012 10:06 AM
Jump to post Thread: Simple Question by carol.ext
- Replies
- 1
- Views
- 219
Looking at your example code and the local file, what are you expecting to not be in English? OK is still OK in the locale file.
Please consider using a more specific post title, even "Simple... -
6 Mar 2012 2:59 PM
- Replies
- 9
- Views
- 1,515
I ran into issues with a grid defined with a plugin using Ext.create when I used more than one of the grid. I ended up using the ptype to specify the plugin.
plugins: [{
ptype:... -
1 Mar 2012 12:29 PM
- Replies
- 2
- Views
- 1,054
Have you tried using extraParams on the proxy?
Not sure what proxy you are using, but here is link to the Ajax proxy -
18 Oct 2011 1:43 PM
- Replies
- 3
- Views
- 526
You are using idProperty: 'categoria', and that tells the json reader what to use as the unique identifier for the records.
In your json, categoria is the same for all the records. So, it looks...
Results 1 to 25 of 120
