Search Type: Posts; User: uzver
Search: Search took 0.02 seconds.
-
1 Dec 2011 4:35 AM
Jump to post Thread: Get Ext.Loader.history via Node.js by uzver
- Replies
- 2
- Views
- 1,645
Adopted for extjs v4.0.7 and nodejs v0.6.2
https://gist.github.com/1416405 -
15 Jun 2011 4:31 AM
- Replies
- 2
- Views
- 831
I found that menuAlign is applied correctly. But when menu render it use menu element size and for the first time this size is wrong (because menu isn't completely rendered at that moment).
-
15 Jun 2011 3:42 AM
- Replies
- 2
- Views
- 831
ExtJS 4.0.2 only.
-
15 Jun 2011 3:41 AM
- Replies
- 2
- Views
- 831
Ext.onReady(function(){
Ext.create('Ext.button.Button', {
menuAlign: 'tr-br', // <-- ignored for the first time (used default 'tl-bl?')
renderTo:... -
2 Jun 2011 1:09 PM
- Replies
- 6
- Views
- 1,067
This happens because js works in this way and extjs doesn't specially cloning objects when instance of any class created. Maybe cloning impossible or has a very difficult implementation. We should...
-
2 Jun 2011 12:12 PM
- Replies
- 6
- Views
- 1,067
I think that all data defined in the class body copied to the each instance of this class. And if this data is changed in instance it isn't changed in class prototype. Another example:
... -
2 Jun 2011 10:24 AM
- Replies
- 6
- Views
- 1,067
Code illustrated bug:
Ext.define('Test', {
data: {}, // <-- isn't cloned for instances.
constructor: function(config) {
var me = this;
... -
25 May 2011 6:43 AM
- Replies
- 0
- Views
- 486
Add to requires Ext.form.field.Radio for Ext.form.RadioGroup
-
25 May 2011 6:26 AM
Jump to post Thread: [4.0.0] buffered store by uzver
- Replies
- 6
- Views
- 1,609
hmm, disable error handling is a strange way to fix this issues :)
This is my overrides for grid, scroller and store after that buffered store and grid work.
Ext.require('Ext.panel.Table',... -
25 May 2011 1:33 AM
Jump to post Thread: [4.0.0] buffered store by uzver
- Replies
- 6
- Views
- 1,609
all issues are reproduced in 4.0.1
-
17 May 2011 10:36 AM
Jump to post Thread: Get Ext.Loader.history via Node.js by uzver
- Replies
- 2
- Views
- 1,645
I made simple nodejs script for getting app dependencies list. It's useful for backend server integration without using Sencha SDK(e.g. rails with jammit gem).
var appDir = process.argv[2];... -
3 May 2011 11:12 AM
Jump to post Thread: Ext 3 to 4 Migration by uzver
- Replies
- 284
- Views
- 98,106
Yes, but inside extjs code buttons config converts to dockedItems and extjs 4 has no any simple way to define buttonAlign.
-
3 May 2011 10:59 AM
Jump to post Thread: Ext 3 to 4 Migration by uzver
- Replies
- 284
- Views
- 98,106
Instead of buttons config, add something like:
dockedItems: [{
xtype: 'toolbar',
dock: 'bottom',
items: [
{ xtype:... -
27 Apr 2011 9:36 AM
Jump to post Thread: [4.0.0] buffered store by uzver
- Replies
- 6
- Views
- 1,609
I found several issues with buffered store and grid with PagingScroller:
1) guranteeRange throw error "Start (0) was greater than end (-1) (Store.js:1545)" when server return zero items (store is... -
19 Apr 2011 3:55 AM
- Replies
- 2
- Views
- 2,473
present in B3
-
14 Apr 2011 12:04 AM
- Replies
- 2
- Views
- 2,473
Ext.regModel('Test', {
fields: [
{name: 'name' , type: 'string' }
],
proxy: {
type: 'localstorage',
id: 'test-store'
}
});
Ext.define('TestStore', { -
11 Apr 2011 5:32 AM
- Replies
- 2
- Views
- 813
I understood the problem. But how to use singletons with the Application in the same namespace?
-
11 Apr 2011 5:04 AM
- Replies
- 2
- Views
- 813
Ext.define("app.core.Test", {
singleton: true
});
Ext.define("app.Application", {
extend: "Ext.Applicaton",
name: "app",
singleton: true,
requires: [ "app.core.Test"],
... -
7 Apr 2011 7:39 AM
- Replies
- 10
- Views
- 2,338
So i only want to generate ids for new records on the client-side (UUID) not on the server side.
-
7 Apr 2011 7:37 AM
- Replies
- 10
- Views
- 2,338
Ok, it's not a phantom, but it's a new record and request for creating this record on the server side must be POST with url: http://host/resource_name and id must be put as post params (RESTful way),...
-
7 Apr 2011 7:25 AM
- Replies
- 10
- Views
- 2,338
Why? It a new record, it doesn't present on the sever. If id present in the url, server try to find resource by id. For creating new record with custom id, id must be in the POST params not in the...
-
7 Apr 2011 6:42 AM
- Replies
- 10
- Views
- 2,338
my backend server based on the Rails framework, so it has mechanism for generating RESTful urls for resources and auto-generated url for create some resource is POST to http://host/resource_name...
-
7 Apr 2011 6:28 AM
- Replies
- 10
- Views
- 2,338
I create new record, but i generate id for this new record from js and put this id as param to post request. RestProxy add this id to url e.g. ...
-
7 Apr 2011 6:04 AM
- Replies
- 10
- Views
- 2,338
If create some model(proxy: rest) with auto-generated id and invoke save for it, RestProxy build url with ID in the url but id must be in the POST params not in the url.
-
5 Apr 2011 8:15 AM
- Replies
- 9
- Views
- 1,540
when click recreate grid show loading and js throw error
Results 1 to 25 of 47
