Search Type: Posts; User: bclinton
Search: Search took 0.09 seconds.
-
26 Nov 2012 1:27 PM
- Replies
- 52
- Views
- 23,939
I haven't moved to 4.1.3 yet, but I'm glad to see that you are staying active on this. Thanks!
-
31 Jul 2012 1:52 PM
- Replies
- 7
- Views
- 497
Try a store.sort() instead of the store.load() and see if that does the trick. (though if it's a remotely sorted store I guess this really won't be an improvement)
-
30 Jul 2012 3:28 PM
- Replies
- 1
- Views
- 252
This sounds like an interesting challenge. What have you tried so far?
I'm wondering that if in the long run it may be easier to accomplish this with an XTemplate or a Dataview rather than... -
30 Jul 2012 3:23 PM
Jump to post Thread: Save data to XML file by bclinton
- Replies
- 2
- Views
- 435
I personally prefer to generate downloadable files, whether they be text, XML, PDF or anything else, on the server side.
But search on "Extjs export grid" and you will find several links to... -
30 Jul 2012 3:08 PM
- Replies
- 7
- Views
- 497
You didn't post any code which makes it kind of difficult to guess at what the problem could be, but is it possible you just need to do a grid.getView().refresh(); ?
-
30 Jul 2012 2:35 PM
- Replies
- 3
- Views
- 765
No it doesn't. But there is an example in the 4.1 docs for Ext.form.field.ComboBox:
tpl: Ext.create('Ext.XTemplate',
'<tpl for=".">',
'<div... -
27 Jul 2012 4:52 PM
Jump to post Thread: deploy on web server by bclinton
- Replies
- 8
- Views
- 1,091
If it's not too late to reply to this, this is most likely a path/filename issue. It is looking for the file all-classes.js to compress it. It is not finding it so that is why you are being left...
-
23 Jul 2012 12:54 PM
- Replies
- 52
- Views
- 23,939
This is working great for me so far, but I did encounter one issue. When the controller class from my sub-application is loaded, it looks for the stores and models in my main application's app path...
-
25 Mar 2012 10:00 AM
- Replies
- 2
- Views
- 1,378
Although the original post is old, I came across this issue today. Try defining your listeners in the listeners config option of your viewport definition.
like this:
this.viewport... -
15 Mar 2012 8:54 PM
- Replies
- 9
- Views
- 6,571
Somewhere between the script tag that includes the ext js library and your application definition. I like to put all my overrides in a overrides.js file and include it in script tag right after the...
-
13 Mar 2012 7:55 AM
Jump to post Thread: Extjs 4 + Codeigniter by bclinton
- Replies
- 25
- Views
- 12,455
Combining the PHP and JS would make your client application less flexible since you would be tying the client to the server code. When you keep them separate, your Ext JS client is not dependent on...
-
10 Feb 2012 12:00 PM
- Replies
- 1
- Views
- 468
The Live Preview from the API docs would be an awesome way to demo Sencha Touch Apps. Are there any instructions for implementing this outside of the API docs? Has anyone been able to use it to...
-
23 Jan 2012 11:29 AM
Jump to post Thread: A minor suggestion on MVC paths by bclinton
- Replies
- 3
- Views
- 759
I haven't gotten that far yet. I'll find out if it's an easy configuration fix when I do.
Also, your enormous signature makes me want to rant like an unprofessional child and send you private... -
22 Jan 2012 10:43 PM
Jump to post Thread: A minor suggestion on MVC paths by bclinton
- Replies
- 3
- Views
- 759
I love the ExtJS 4 MVC application architecture, but I'd like to suggest one minor change in the recommended directory structure. I prefer having my app.js in the app/ directory rather than one...
-
1 Jan 2012 6:50 PM
Jump to post Thread: Field isDirty function change by bclinton
- Replies
- 2
- Views
- 860
I originally posted here because I wasn't sure if it was a bug or if it is the intended behavior.
Just in case, I posted a bug report and a test case here:... -
1 Jan 2012 6:45 PM
- Replies
- 1
- Views
- 620
Ext version tested:
Ext 4.0.7 and 4.1-PR1, 4.1.0-beta-1
Description:
The isDirty() function in Ext.form.field.Field has been changed in the 4.1 preview release and now reports that fields... -
30 Dec 2011 2:36 PM
Jump to post Thread: Field isDirty function change by bclinton
- Replies
- 2
- Views
- 860
I see that the isDirty() function in Ext.form.field.Field has been changed in the 4.1 preview release.
This is the function in 4.07:
isDirty : function() {
var me = this;
... -
15 Dec 2011 5:00 AM
Jump to post Thread: How to get MVC object references by bclinton
- Replies
- 8
- Views
- 5,695
Interesting... I guess because you're not including any controllers, stores, models or views it's not creating the namespace? Also, I think if you were requiring GestorSeguridad.store.XRestProxy...
-
14 Dec 2011 8:21 PM
Jump to post Thread: How to get MVC object references by bclinton
- Replies
- 8
- Views
- 5,695
If "MyApp" (the name of your application) is not defined then you seem to be operating in a different namespace than your application.
Aren't you naming your classes something like... -
12 Dec 2011 3:01 PM
- Replies
- 10
- Views
- 1,777
Perhaps it isn't working as designed which would indicate the need for a bug report.
But since this is Q&A, have you tried using a spacer like this?
xtype : 'titlebar',
... -
11 Dec 2011 4:27 AM
- Replies
- 10
- Views
- 1,777
nevermind. I misunderstood the question.
-
11 Dec 2011 3:57 AM
Jump to post Thread: taphold on items in a list by bclinton
- Replies
- 4
- Views
- 1,177
Thanks for the code.
I had one problem with it using 2.0 PR2. In the onItemTapHold handler, me.getViewItems() was returning a Javascript NodeList which doesn't have an indexOf method like a... -
10 Dec 2011 8:03 PM
- Replies
- 18
- Views
- 12,277
bweiler's solution works for me in Google Chrome, but does not work for me on my Android.
-
28 Nov 2011 2:21 PM
Jump to post Thread: Empty Xtemplate? by bclinton
- Replies
- 6
- Views
- 1,622
xcount only works within the loop. Try this:
'<tpl if="values.length <= 0">',
'no comments are posted',
'</tpl>',
Note: This works in ExtJS and... -
21 Nov 2011 9:56 AM
- Replies
- 28
- Views
- 7,811
Oh yeah. I haven't used Touch in a while (this is an old thread) and I was thinking that restriction didn't apply, but I guess that is only with apps compiled with phonegap.
You could always...
Results 1 to 25 of 119
