-
8 Jun 2011 8:09 AM #21
Yeah, having issues with online RC docs too.
http://dev.sencha.com/deploy/ext-4.0...Ext.grid.Panel is stuck at loading content (although the object browser and title display fine).
-
8 Jun 2011 8:12 AM #22
Weird. I was clicking around and the top level items started working, now the Ext.grid.Panel shows too...
Never mind.
-
8 Jun 2011 8:18 AM #23
Hi Ed,
Get lots of errors when building my CSS, missing images etc.
Probably another one for Robert, but thought would throw it out there...
Looks like how the config.rb is interpreted has changed.
My current config.rb:
As you can see, I have a web path ($ext_path) that seems to be what is put in the CSS file.Code:# Grab the current dir dir = File.dirname(__FILE__) # Set our Ext path $ext_path = '../../../lib/Ext/ext-4.0.2' # This is our 'web' path ext_filesystem_path = '../../../../ThirdPartyReferences/Ext/ext-4.0.2' # We need to load in the Ext4 themes folder, which includes all it's default styling, images, variables and mixins load File.join(dir, ext_filesystem_path, 'resources', 'themes') # Sort out our SASS, CSS and images dirs sass_path = dir css_path = File.join(dir, "..", "css") images_dir = File.join(dir, "..", "images") # Specify the output style/environment output_style = :expanded #:compressed environment = :development #:production
I also have a physical path to Ext (in a ThirdPartyReferences folder) that I put in so that the load statement worked, since that's a physical location on disk.
I want to avoid having to copy Ext to every single code repository, since that's the point of virtual directories on the web server (IIS in my case)...
If I change my config.rb to:
Then I get no errors, but all of the image paths in my CSS are wrong.Code:# Grab the current dir dir = File.dirname(__FILE__) # Set our Ext path $ext_path = '../../../../ThirdPartyReferences/Ext/ext-4.0.2' # We need to load in the Ext4 themes folder, which includes all it's default styling, images, variables and mixins load File.join(dir, $ext_path, 'resources', 'themes') # Sort out our SASS, CSS and images dirs sass_path = dir css_path = File.join(dir, "..", "css") images_dir = File.join(dir, "..", "images") # Specify the output style/environment output_style = :expanded #:compressed environment = :development #:production
Obviously I can post-process, but curious as to what has changed and why?
Remember we're not all on OSes that support symbolic or hard links properly (e.g. OSX), and is the norm rather than the exception
I'm on Win7 x64 btw.
I'll hack my CSS for now so can give the release a whirl, but would welcome some support for those of us that want to have many repos and one copy of Ext.
Cheers,
Westy
-
8 Jun 2011 8:56 AM #24
To clarify what doesn't work, the buffer-grid example can be used in Chrome 12.0.742.91:
- Click once on the down scroll arrow, the grid will jump to records 31-50 instead of 2-21.
- Now the grid cannot be scrolled above record 31.
- Click 17 more times on the down scroll arrow. The grid will jump to records 56-75. Note the grid does not move at all during the previous 16 clicks.
Update: Inserts, removes, and/or filtering on buffered grids still occur only on the currently paged segment. Scrolling to a different page, then scrolling back shows the additions, removals, and/or filtering do not persist.
-
8 Jun 2011 9:51 AM #25Sencha - Community Support Team
- Join Date
- Jan 2009
- Location
- Palo Alto, California
- Posts
- 1,941
- Vote Rating
- 6
We actually have a separate release cycle for the SDK Tools but they're being worked on right now to address the image creation issues some people are seeing. I think we're also going to create some kind of notification system/release RSS feed that will inform you when new releases are put out.
Ext JS Senior Software Architect
Personal Blog: http://edspencer.net
Twitter: http://twitter.com/edspencer
Github: http://github.com/edspencer
-
8 Jun 2011 10:42 AM #26Search the forum: http://www.google.com/coop/cse?cx=01...%3Az7of1ufqccu
Read the docs too: http://extjs.com/deploy/dev/docs/
Scope: http://extjs.com/forum/showthread.ph...642#post257642
-
8 Jun 2011 11:43 AM #27
I still do not see any details on the grid configuration option for Ext.chart.Axis will this ever appear in the docs??
-
8 Jun 2011 12:03 PM #28Sencha - Community Support Team
- Join Date
- Jan 2009
- Location
- Palo Alto, California
- Posts
- 1,941
- Vote Rating
- 6
Ext JS Senior Software Architect
Personal Blog: http://edspencer.net
Twitter: http://twitter.com/edspencer
Github: http://github.com/edspencer
-
8 Jun 2011 12:45 PM #29
I know that team is focused on improve performance in nested layouts, but a simple test creating 500 fields show almost same result as in 4.0.1.
4.0.2-rc3.jpgCode:Ext.ns('Automidia'); Automidia.Tester = { init : function(){ this.panel = new Ext.form.FormPanel({ title : 'Performance Test', width : 400, height : 300, autoScroll : true, renderTo : Ext.getBody(), buttons : [{ text : 'Add', handler : this.onAddClick, scope : this }] }); }, onAddClick : function(){ var items = this.buildFields(); var start = new Date(); this.panel.add(items); this.panel.doLayout(); var end = new Date(); this.panel.setTitle((end - start) + ' miliseconds'); }, buildFields : function(){ var items = []; for(var i=0;i<500;i++){ items.push({ xtype : 'textfield', fieldLabel : 'Campo ' + i }); } return items; } }; Ext.onReady(Automidia.Tester.init, Automidia.Tester);
-
8 Jun 2011 3:42 PM #30Sencha - Community Support Team
- Join Date
- Jan 2009
- Location
- Palo Alto, California
- Posts
- 1,941
- Vote Rating
- 6
Ext JS Senior Software Architect
Personal Blog: http://edspencer.net
Twitter: http://twitter.com/edspencer
Github: http://github.com/edspencer


Reply With Quote


