Search Type: Posts; User: nextSTEP
Search: Search took 0.02 seconds.
-
24 Apr 2012 3:50 AM
- Replies
- 2
- Views
- 977
Have a look at here: http://www.sencha.com/forum/showthread.php?186093-Grid-header-disappears-on-row-click&p=787133&viewfull=1#post787133
-
24 Apr 2012 3:49 AM
- Replies
- 8
- Views
- 1,257
I got the same problem, but the solution provided here did not solve my problem.
Instead the following solved it for me:
grid.on("render", function(view) {
view.ownerCt.doLayout();
},... -
29 Mar 2012 6:25 AM
- Replies
- 1
- Views
- 291
I think parantheses are missing to add this.useNull to all conditions?! (see red parantheses)
Might this be a bug?
BOOL: {
convert: function(v) { // v is '' (empty string)
if... -
5 Mar 2012 7:39 AM
- Replies
- 3
- Views
- 1,075
Already occurs in 4.02.
-
31 Jan 2012 7:46 AM
- Replies
- 3
- Views
- 852
Yes you're right, but the problem (or bug?) is that in both cases we have a proxy instance, but not a reader instance.
Ext.applyIf(proxy, {
model: me.model
});
is not equivalent to -
31 Jan 2012 1:44 AM
- Replies
- 3
- Views
- 852
Hi,
I have a store with a proxy defined as follows:
proxy: {
type: "ajax",
url: "some url",
reader: {
type: "json",
root: "myRoot" -
16 Nov 2011 9:45 AM
- Replies
- 27
- Views
- 8,214
I'm using the multi-application technique with overriding the EventBus [...]. It works like a charm - until now.
-
30 Sep 2011 7:24 AM
Jump to post Thread: Controller Question by nextSTEP
- Replies
- 7
- Views
- 645
No, just for "controllers" or any other ones. Defining it in "requires" requires you to specify the full name.
-
30 Sep 2011 6:12 AM
- Replies
- 0
- Views
- 255
What about adding 'controller' to the modules-array in order to require a controller to be loaded?
What I want to do is:
Ext.define("App.controller.TestController", {
controllers : [
... -
30 Sep 2011 5:58 AM
Jump to post Thread: Controller Question by nextSTEP
- Replies
- 7
- Views
- 645
You don't need the prefix in controller declaration, because it's prepended automatically.
controllers: [
'tab.Member'
],
Maybe that's the problem because the prefix occurs... -
29 Sep 2011 2:23 AM
- Replies
- 2
- Views
- 370
This works partially.. I just get the JSON string, not the decoded User instance.
So I googled a lot and just removed the writer config and declared the Server-method with the User-object... -
29 Sep 2011 12:59 AM
- Replies
- 2
- Views
- 370
Figured it out!
Set this writer config on the proxy:
writer : {
encode : true,
root : "user" // Param name
}
which causes the Ajax request to send -> data : "user=[encoded... -
28 Sep 2011 5:50 AM
- Replies
- 2
- Views
- 370
Hi,
given the following model:
Ext.define("User", {
extend : "Ext.data.Model",
fields : [
{ name : "id" }, -
21 Sep 2011 7:28 AM
Jump to post Thread: Changing Ext.panel.Header Size by nextSTEP
- Replies
- 7
- Views
- 4,945
Hi dorgan, how did you specify the font-size for the panel header?
I hope you didn't do this via inline CSS setting HTML like this: <span style="font-size:20pt;">Title</span>
I'm looking for a... -
12 Sep 2011 12:45 AM
- Replies
- 4
- Views
- 1,574
Sorry, forgot to mention it's IE 9.0.
I'm using a single word in the node. -
11 Sep 2011 11:36 PM
- Replies
- 4
- Views
- 1,574
Workaround for IE does not work for me.
Very strange bug. Has this been already fixed? 28003 -
4 Aug 2011 6:49 AM
- Replies
- 15
- Views
- 2,867
I would recommend to create a ResourceManager that returns a given resource string into the appropriate app language.
{
text : App.ResourceManager.get("btn_cancel")
} -
20 Jul 2011 5:59 AM
Jump to post Thread: Grid Panel not showing data by nextSTEP
- Replies
- 6
- Views
- 888
Ok, sorry for this thread and your answers. It was my fault that it didn't work.
I have overwritten the JsonReader which worked well in 3.x
Ext.override(Ext.data.JsonReader, {
... -
20 Jul 2011 5:41 AM
Jump to post Thread: Grid Panel not showing data by nextSTEP
- Replies
- 6
- Views
- 888
Thank you guys for your answers, but adding an 'id' field can't be a required option (tried your suggestion though, does not work).
-
20 Jul 2011 4:03 AM
Jump to post Thread: Grid Panel not showing data by nextSTEP
- Replies
- 6
- Views
- 888
No, that did not solve the problem.. Tried several variations. I think it's a "cleaner" JSON when properties are surrounded by quotation marks. The JSON is generated automatically by Newtonsofts...
-
18 Jul 2011 11:18 PM
Jump to post Thread: Grid Panel not showing data by nextSTEP
- Replies
- 6
- Views
- 888
Hi,
I have a JSON web service that returns the following:
{
'announcements' : [
{ 'Title' : 'Item 1' },
{ 'Title' : 'Item 2' }
] -
13 Jun 2011 4:36 AM
- Replies
- 0
- Views
- 866
Hi,
first I had only series displaying 3 fields. This resulted in 3 lines in the chart which all had different colors. But the graphs weren't correct, so I decided to take for each field one series.... -
11 Jun 2011 6:01 PM
- Replies
- 3
- Views
- 953
Ok, I got it. Forgot to update series and axes on the chart, too.
-
11 Jun 2011 4:47 PM
- Replies
- 3
- Views
- 953
Hi,
as in the line chart sample provided, a simple call of store.loadData() updates the chart. In my case, the fields of the store can vary. This is where the chart is not updated when calling... -
3 May 2011 2:33 AM
Jump to post Thread: Component in window header by nextSTEP
- Replies
- 0
- Views
- 822
Hi,
I use following code to embed a text field into a window header, which almost works - in IE (9).
Not in Firefox (4.0).
Ext.app.Window = Ext.extend(Ext.Window,
{
render : function()...
Results 1 to 25 of 36
