Search Type: Posts; User: dr-dan
Search: Search took 0.02 seconds.
-
14 Feb 2013 12:25 AM
Jump to post Thread: store.add() does nothing by dr-dan
- Replies
- 4
- Views
- 211
imo the rules as to what makes a record new or existing should not be hard-coded into the framework.
isNew() config function perhaps?
Would you consider putting that in your release notes so... -
13 Feb 2013 8:12 AM
Jump to post Thread: store.add() does nothing by dr-dan
- Replies
- 4
- Views
- 211
I have boiled it down to the fact that I am adding two objects with the same "unassigned" Id of "0"
Its zero as it will get assigned an id by the server on update. If I update it to be "null" then... -
13 Feb 2013 6:53 AM
Jump to post Thread: store.add() does nothing by dr-dan
- Replies
- 4
- Views
- 211
given
mystore (a store)
console.log(mystore.getCount()) // == 4
store.add(model);
console.log(mystore.getCount()) // == 4
No error reported. -
6 Feb 2013 2:34 AM
Jump to post Thread: Container destroy() best practice by dr-dan
- Replies
- 5
- Views
- 187
Cool. Is there an discernible difference between
cmp.destroy()
&
Ext.destroy(cmp) -
6 Feb 2013 1:57 AM
Jump to post Thread: Container destroy() best practice by dr-dan
- Replies
- 5
- Views
- 187
Did my own tests, and as expected unless you manage the components you create yourself, they just sit there in ComponentManager. Useful test function in app.js helped me monitor that.
logCmps:... -
5 Feb 2013 5:13 AM
Jump to post Thread: Container destroy() best practice by dr-dan
- Replies
- 5
- Views
- 187
OK, it probably doesn't help that I have ended up using the framework slightly in an odd way. I tend to create components with templates and render other components directly to the childEls in the...
-
24 Jan 2013 12:30 PM
- Replies
- 8
- Views
- 328
Once i worked out the installation of ruby & compass was mandatory (for windows see: http://www.ladysign-apps.com/developer/sass/installing-sass-compass-for-windows-os-x/), this has worked for me.
... -
24 Jan 2013 12:08 PM
- Replies
- 8
- Views
- 328
ok so its perms on wwwroot... placing the app elsewhere has at least generated it
btw any reason for not recommending 4.1.3? -
24 Jan 2013 12:01 PM
- Replies
- 8
- Views
- 328
Its 4.1.1a - whats the diff?
seems I have a prob writing to "targetDir='{'0'}'"
...
C:\>sencha -sdk c:\inetpub\wwwroot\ext-4.1.1a generate app MyApp c:\inetpub\wwwroot\myapp -
24 Jan 2013 9:56 AM
- Replies
- 8
- Views
- 328
I did mention I'd tried both...and im on 4.1.* - tried 4.0.7 in exasperation, because the docs are cryptic to say the least with regards to tools and versions.
Whats really required is some decent... -
23 Jan 2013 2:29 AM
- Replies
- 8
- Views
- 328
sencha create jsb
Doesn't exists in Sencha Cmd 3.0.
For Ext JS 4.1.x what are we supposed to use?
Using the SDK 2.0 command does not seem to work. (i tried the same simple example app,... -
16 Jan 2013 2:33 AM
- Replies
- 1
- Views
- 300
Apparently a default behaviour of the asp.net pipeline for multiple requests of the same web session described here......
-
16 Jan 2013 1:32 AM
- Replies
- 1
- Views
- 300
I have a strange one. I am watching the Net tab in FF as I make some saves in my webpage.
The save makes 3 PUTs via async (default) ajax.
The timings are terrible, but there seems to be a... -
15 Nov 2012 5:07 AM
Jump to post Thread: "ExtJS" way to scroll the window by dr-dan
- Replies
- 3
- Views
- 5,493
Ext is only javascript after-all, so, just call native:
window.scrollTo(0, 0);
That worked for me.
Ext.getBody().scrollTo('top', 0); -
14 Nov 2012 12:39 AM
- Replies
- 2
- Views
- 469
Ah just what I was looking for.
Thanks -
13 Nov 2012 12:25 PM
- Replies
- 2
- Views
- 469
In essence i am having to override the save method of a model, because when using the proxy (via save()), dates are sent in the format MS enjoys when serializing into JSON. (i.e. ticks since 1970),...
-
6 Nov 2012 3:32 PM
- Replies
- 3
- Views
- 1,621
All good points and I understand why we are where we are.
Layouts alone I find tough enough. When you do put enuf grey matter into them and finally work out their intricacies, they work really... -
30 Oct 2012 1:24 PM
- Replies
- 3
- Views
- 1,621
What happened to SoC?
This is a fantastic framework in every respect bar one.
Feature request: Abstract.Component: senchaStyling: on/off
Stuff like this:
Hard-coded width's in components... -
29 Oct 2012 1:40 AM
- Replies
- 4
- Views
- 1,213
From what you are suggesting you would have to override for every field type?
Could you not extend formpanel and do something like this in it?
defaults: {
labelableRenderTpl: [... -
26 Oct 2012 4:26 AM
Jump to post Thread: Ext-JS Spell checker by dr-dan
- Replies
- 7
- Views
- 8,339
No, I don't think so, use the inputAttrTpl config I guess
-
26 Oct 2012 3:27 AM
- Replies
- 6
- Views
- 370
http://api.jquery.com/insertAfter/
a parent (div) wants to call a component that renders an href + a list into itself, after xy element -
26 Oct 2012 3:25 AM
- Replies
- 6
- Views
- 370
Well yeah, in my case a parent component
-
26 Oct 2012 3:15 AM
- Replies
- 6
- Views
- 370
OK but what if i just wanted the text Foo rendering not wrapped in a div?
-
26 Oct 2012 3:02 AM
- Replies
- 6
- Views
- 370
I am bemused about the assumption that all Components must be wrapped in some tag (autoEl: default div)
This is screwing up my css. Is there anyway to suppress the autoEl, or is there another base... -
26 Oct 2012 1:02 AM
- Replies
- 6
- Views
- 2,322
Great. Thanks for putting me straight.
And for completeness, using renderData as well:
http://jsfiddle.net/qUudA/10/
Results 1 to 25 of 82
