Search Type: Posts; User: mixo
Search: Search took 0.02 seconds.
-
20 Feb 2013 8:13 PM
Jump to post Thread: Buffered store by mixo
- Replies
- 2
- Views
- 214
Thank you vadimv!
It's do the trick. -
20 Feb 2013 12:00 AM
Jump to post Thread: Buffered store by mixo
- Replies
- 2
- Views
- 214
hello again guys!
I have some kind of feature request for buffered store implementation.
In our webApp I realized grid view with buffered store and I have some issues.
I would like to have... -
18 Feb 2013 6:05 PM
Jump to post Thread: Styling textarea by mixo
- Replies
- 2
- Views
- 231
Thanks for answer sword!
"fieldCls" config applyed on init component, but I need to change field style on text input - change bg color for valid\invalid data. In this case I can't apply new field... -
18 Feb 2013 2:32 AM
Jump to post Thread: Problems with scope. by mixo
- Replies
- 7
- Views
- 714
{ xtype:'button', text:'Change me by click',
scope: this, handler: function() { this.scope.setButtonsText(); } }
where this is pointer to... -
18 Feb 2013 1:14 AM
Jump to post Thread: Problems with scope. by mixo
- Replies
- 7
- Views
- 714
well it'll be funny hack but you can define
scope:this
in button config
and in btn handler you can access to scope like this.scope.setButtonsText -
18 Feb 2013 1:08 AM
- Replies
- 2
- Views
- 341
webfriend13 you can define filter function for filter with conditions which you like
store.filter([ {property: "email", value: /\.com$/}, {filterFn: function(item) { return... -
18 Feb 2013 12:20 AM
Jump to post Thread: Styling textarea by mixo
- Replies
- 2
- Views
- 231
Hello guys!
I want styling my textarea field in dynamic. I find that it can be done by use setFieldStyle method of Ext.form.Field class, which take a css style config as arguments.
... -
31 Jan 2013 5:56 PM
Jump to post Thread: Ext JS under the GPLv3 by mixo
- Replies
- 2
- Views
- 323
mitchellsimoens, thanks for answer.
4.1.3 have one important for me fix for tooltips stealing focus from input fields.
Well, I will wait for the release 4.2. -
29 Jan 2013 7:52 PM
Jump to post Thread: Ext JS under the GPLv3 by mixo
- Replies
- 2
- Views
- 323
Ext JS 4.1.1a is available under the GPLv3 as can we see on downloads page.
Version 4.1.3 is available to Sencha Support subscribers only.
What about ExtJS 4.1.3 availability under the GPLv3?... -
28 Aug 2012 8:00 PM
- Replies
- 2
- Views
- 360
well i found solution of my problem.
Don't know how it's depends from each other, but my window also have a radiogroup with list of radiofields. Then I removed radiogroup cmp and only stayed a... -
28 Aug 2012 2:20 AM
Jump to post Thread: How can i split js file by mixo
- Replies
- 2
- Views
- 262
What exactly you put into parts 1-3?
if it's your defined components you can include it over Ext.require and load just before create your objects.
also you can do some checks in your browser... -
28 Aug 2012 2:07 AM
- Replies
- 2
- Views
- 342
i guess you can take some css rules applied to header cmp and make your own custom css class for draggable element.
-
28 Aug 2012 2:00 AM
- Replies
- 2
- Views
- 360
Hello again, friends!
Currently i have a very strange issue with panel's expand\collapse events.
I have a couple of collapsible panels on a Window cmp and their expanding behavior very strange.... -
15 Aug 2012 9:29 PM
Jump to post Thread: ExtJS 4.0.2 to ExtJS 4.1.1 by mixo
- Replies
- 13
- Views
- 1,506
well I solve the issue!
it turns out that some patches are not needed any more for Ext 4.1.
as for me there is a patch for Ext.view.AbstractView - bindStore function
Now I fill better. Thanks -
15 Aug 2012 9:14 PM
Jump to post Thread: how to pass a parameter through ajax by mixo
- Replies
- 4
- Views
- 392
Strip calculate url and ajax request
myUrl = 'duty.json.ajax.php?id='+Ext.getCmp('id').getValue()
console.log(myUrl);
...
url: myUrl -
15 Aug 2012 6:58 PM
Jump to post Thread: Mi grid scroll doen't work fine. by mixo
- Replies
- 4
- Views
- 517
I use this patch for this case. It's already discussed here early
if your grid cmp called myGrid it looks like
myGrid.on('scrollershow', function(scroller) {
if (scroller &&... -
15 Aug 2012 6:53 PM
Jump to post Thread: how to pass a parameter through ajax by mixo
- Replies
- 4
- Views
- 392
hello
I guess your problem not in ajax. what you expect to get by Ext.getCmp('id').getValue()?
First step is try manually get this value by typing in console Ext.getCmp('id').getValue().
I... -
15 Aug 2012 6:31 PM
Jump to post Thread: ExtJS 4.0.2 to ExtJS 4.1.1 by mixo
- Replies
- 13
- Views
- 1,506
I continue search for solution of my problem and found this thing.
Sencha doc server for 4.1 version use ExtJs 4.1.0rc as we can see by typing
Ext.versions
exec my test row there looks... -
15 Aug 2012 1:10 AM
Jump to post Thread: ExtJS 4.0.2 to ExtJS 4.1.1 by mixo
- Replies
- 13
- Views
- 1,506
you are absolutely right about that, and i have this options. but there is no difference if I try to create DataView with params.
var maindataview = Ext.create('Ext.view.View', {
... -
15 Aug 2012 12:14 AM
Jump to post Thread: ExtJS 4.0.2 to ExtJS 4.1.1 by mixo
- Replies
- 13
- Views
- 1,506
my code starts with
Ext.Loader.setConfig({enabled: true});
and code
var textfield = Ext.create('Ext.form.field.Text', {});
works correctly on ext 4.1.1, that also proves that Ext.Loader is... -
14 Aug 2012 6:43 PM
Jump to post Thread: ExtJS 4.0.2 to ExtJS 4.1.1 by mixo
- Replies
- 13
- Views
- 1,506
After debugging I find seat of the trouble
var maindataview = Ext.create('Ext.view.View', {});
TypeError: Cannot read property 'fn' of undefined
simply execute this row in browser... -
7 Aug 2012 1:32 AM
Jump to post Thread: ExtJS 4.0.2 to ExtJS 4.1.1 by mixo
- Replies
- 13
- Views
- 1,506
Hmm..
evant, actually I agree with you, that addListener is absolutely differ with action I tried to do.
Well, looks like better I try to find some more information.
Thanks guys. -
5 Aug 2012 7:14 PM
Jump to post Thread: ExtJS 4.0.2 to ExtJS 4.1.1 by mixo
- Replies
- 13
- Views
- 1,506
Thanks for answer, Scott.
Call of this function is absolutely correct, because it's just copy\pasted from my project which works on ExtJs 4.0.2. And therefore it's accept the same arguments.
It's... -
26 Jul 2012 7:55 PM
Jump to post Thread: ExtJS 4.0.2 to ExtJS 4.1.1 by mixo
- Replies
- 13
- Views
- 1,506
Hello guys!
First of all glad to see that ExtJS project successfully develops. My current project works on ExtJS 4.0.2 and now I want to try to use latest ExtJS4.1.1. I've included all libraries and... -
1 Feb 2012 8:07 PM
Jump to post Thread: Panel body not resizing with panel. by mixo
- Replies
- 2
- Views
- 788
the same issue while using Ext 4.0.2. anybody have an ideas?
Results 1 to 25 of 36
