Search Type: Posts; User: jtiai
Search: Search took 0.01 seconds.
-
9 Apr 2013 12:35 AM
- Replies
- 2
- Views
- 118
Really? I feel really noob now... :">
Would that work with Application concept as well? -
9 Apr 2013 12:07 AM
- Replies
- 2
- Views
- 118
Hi,
I have massive "desktop app"-like SOA (mostly built on top of Dojotoolkit) which is now considered to move on top of ExtJS 4+ completely.
Problem is that with Dojotoolkit we could minimize... -
11 Dec 2012 2:28 AM
- Replies
- 4
- Views
- 395
I would also do two separate stores and grid reconfigure if there is two different models involved.
I just got impression from original post that model stays same only URL used data fetching... -
11 Dec 2012 1:17 AM
- Replies
- 4
- Views
- 395
In short - MVC doesn't help. "You can't do it". But you can hack it manually.
There is several ways to do that - you can define completely two different trees with separate stores and urls.
Or... -
31 Oct 2012 11:36 PM
- Replies
- 2
- Views
- 489
Hi,
I'm trying to construct MVC application that would load resources only when needed. Now when I've views, stores etc. listed on an application they're loaded at startup - something I though... -
22 Oct 2012 1:18 AM
- Replies
- 1
- Views
- 282
Hi,
I spent good while to figure out problems with our code and found out following works:
<script type="text/javascript" scr="libs/ext-4.1.2a/builds/ext-all-sandbox.js"></script>
<script... -
14 Sep 2012 3:53 AM
- Replies
- 4
- Views
- 709
One more note. This seems to be actually bug in ExtJS 4.0.7 which I was still using. In ExtJS 4.1.x problem doesn't seem to appear.
-
14 Sep 2012 12:25 AM
- Replies
- 4
- Views
- 709
Ok, problem was that since I had slightly more complex layout where I had custom component I had typo in "extend" part which caused interesting side-effect.
I wonder is there way to catch such a... -
13 Sep 2012 11:58 PM
- Replies
- 4
- Views
- 709
You're right. I even put up jsFiddle test http://jsfiddle.net/FyHgY/ and it seems to work as expected. Wonder what I am doing wrong in my code...
I hate when this happens. :"> -
13 Sep 2012 10:31 PM
- Replies
- 4
- Views
- 709
Hi,
I'm trying to build a form that has one field, one fieldset and container in vertical layout. Problem is that container should resize according to fieldset resize but I haven't been able to do... -
4 Jul 2012 10:56 PM
Jump to post Thread: Ext.Ajax.defaultHeaders not applied by jtiai
- Replies
- 1
- Views
- 487
Hi,
I'm trying to use Sencha Touch 2.0.1.1 with Django backend. To be able to cope with CSRF protection I need to get value from the cookie and send it in X-CSRFToken header.
In ExtJS it was... -
8 Mar 2012 4:58 AM
Jump to post Thread: Trees and huge nodes by jtiai
- Replies
- 5
- Views
- 408
Paging is nice option but it doesn't fit very well in my usecase where I actually have two trees open, user selects items from both and does interactions there.
So I'm more interested seamless... -
7 Mar 2012 3:04 AM
Jump to post Thread: Trees and huge nodes by jtiai
- Replies
- 5
- Views
- 408
Leaf nodes represent connectors within devices. They're normally grouped in bundles according to their connection destination.
But in case of clean device it has just bunch of connectors that are... -
7 Mar 2012 12:57 AM
Jump to post Thread: Trees and huge nodes by jtiai
- Replies
- 5
- Views
- 408
Hi,
I might have node that contains tens of thousands child nodes.
I'm trying to figure out how to lazily load node children (infinite scrolling).
I can load all children in one go (like it... -
29 Feb 2012 6:01 AM
- Replies
- 5
- Views
- 1,205
I resolved problem for now by adding serverside extjs - python converters. Since I know what my data is I can use explicit converters.
Though it would be nice to have save honor defined date (or... -
16 Jan 2012 9:20 PM
Jump to post Thread: ExtJS tab and grid by jtiai
- Replies
- 4
- Views
- 2,041
Hmm... I've vbox layout with align stretching.
Following slightly stripped out version of my panel that I put in tab.
Ext4.define('MyPanel', {
extend : 'Ext4.form.Panel',
alias :... -
16 Jan 2012 9:03 PM
Jump to post Thread: ExtJS tab and grid by jtiai
- Replies
- 4
- Views
- 2,041
Nested within panel.
My layout is like following:
Tab
Panel
Toolbar
Grid -
16 Jan 2012 5:11 AM
Jump to post Thread: ExtJS tab and grid by jtiai
- Replies
- 4
- Views
- 2,041
Hi,
I'm trying to put simple grid in tab, but for some reason first time tab is activated grid is empty. If I reconfigure grid it will show data correctly.
How to add grid properly to tab so... -
24 Nov 2011 10:40 PM
Jump to post Thread: Extending Ext.data.Model by jtiai
- Replies
- 2
- Views
- 627
Well it was a typo. I really meant:
Ext.define('Foo.data.Model', {
extend: 'Ext.data.Model',
doMyStuff : function() {
console.log('I just did this!');
}
}); -
23 Nov 2011 10:55 PM
Jump to post Thread: Extending Ext.data.Model by jtiai
- Replies
- 2
- Views
- 627
Hi,
I tried to add custom method to Ext.data.Model by doing normal ExtJS inheritance like follows:
Ext.define('Foo.data.Model', {
doMyStuff : function() {
console.log('I just... -
2 Nov 2011 10:28 PM
- Replies
- 5
- Views
- 1,205
I have model like this:
Ext.define('MyModel', {
extend: 'Ext.data.Model',
fields: [ { name: 'datefield',
type: 'date',
dateFormat: 'Y-m-d'
}], -
2 Nov 2011 2:55 AM
- Replies
- 5
- Views
- 1,205
I'm using simple model that contains date field. Server returns and expects to have date in format "YYYY-mm-dd".
Reading part works perfectly, but when I try to write model back (using .save()... -
17 Oct 2011 6:24 AM
- Replies
- 1
- Views
- 428
I've datamodel that contains lot of nullable foreign keys. I tried to use ExtJS 4 models to contain foreign keys by using belongsTo association but it seems to always crash when there is null entries...
-
28 Sep 2011 12:34 AM
- Replies
- 38
- Views
- 7,811
Above statement is fully against RESTful approach. Because it's required that you have that information and that is provided by HATEOAS. You don't need full knowledge beyond initial URI. Otherwise...
-
24 Aug 2011 9:28 PM
Jump to post Thread: ExtJS 4, related models and forms by jtiai
- Replies
- 2
- Views
- 1,470
Since one to one relation is basically special case of one to many that shouldn't affect outcome.
More over I probably would like to have form that could contain also multiple entries from child...
Results 1 to 25 of 27
