-
28 Jan 2012 4:10 PM #11
Glad to hear things are looking up.
Outside of the issues discussed elsewhere (http://www.sencha.com/forum/showthre...29-API-Changes), our goal is to be backwards compatible with 4.0x. So, if you are hitting compatibility issues, we'd love to hear about them so that we can address them for GA. That would also probably be of value to others.
Thanks for the feedback!Don Griffin
Ext JS Development Team Lead
Check the docs. Learn how to (properly) report a framework issue and a Sencha Cmd issue
"Use the source, Luke!"
-
29 Jan 2012 1:36 AM #12
Does anybody have problems with tree in opera? I already wrote about this bug there http://www.sencha.com/forum/showthre...Panel-in-Opera, but i thought it have been repaired in next beta, but now I have this problems with b2, too. Any advise?
-
30 Jan 2012 2:08 AM #13
Testing the simpe MVC example
Testing the simpe MVC example
I keep testing the MVC example app from the learning center, that is also included as the app/simpe example in the code. Since Beta-1 (and now in Beta-2 as well) the updating from the form to the grid does not work the same anymore.
The original controller/Users.js::updateUser function in the example is as follows:
When I use the following method instead it works as expected:PHP Code:updateUser: function(button) {
var win = button.up('window'),
form = win.down('form'),
record = form.getRecord(),
values = form.getValues();
record.set(values);
win.close();
this.getUsersStore().sync();
}
It seems that record.set(values) does not force an update on the grid anymore (when clicking the table row again the correctly changed values from the prior edit are shown.PHP Code:updateUser: function(button) {
var win = button.up('window');
form = win.down('form');
record = form.getRecord();
form.getForm().updateRecord(record);
win.close();
this.getUsersStore().sync();
}
Also to make this example work, the data/updateUsers.json has to return the same data as changed in the form, i.e.
Otherwise looking forward to the final release.PHP Code:{
success: true,
users: [
{id: 1, name: 'Eddy', email: 'ed@sencha.com'}
]
}
-
30 Jan 2012 3:55 AM #14
AWESOME job guys. This worked out of the box on a very complex app for me. There were a few minor glitches, but compared to b1 this is a massive move forward - at least for my app.
Icons still dont appear in Firefox by the way on the 'kitchen sink' demo.


-
30 Jan 2012 6:54 AM #15
I'm having trouble moving forward in testing B2. The issues that I'm seeing are at times only showing up when deployed on our Windows 2008R2 webserver using IIS7. 2.2, 3.x, and 4.0.7 projects are working fine on the same platform. Is anyone else having difficulty with Beta publishing on a Windows platform?
I have reported some issues/anomalies here:
http://www.sencha.com/forum/showthre...-layout-in-IE8
http://www.sencha.com/forum/showthre...dows-webserver
http://www.sencha.com/forum/showthre...n-a-web-server
http://www.sencha.com/forum/showthre...ed-from-shadow
I know on a B1 report that Evant wasn't able to reproduce the issue with the treepanel's horizontal scrollbar. And I wasn't able to either on my file system or when I deployed the sample code to my Apache server, but can't escape it in our production Windows webservers.
-
30 Jan 2012 6:54 AM #16
Any chance you guys could include a scoped version of the gray theme in 4.1 and future releases?
-
30 Jan 2012 9:05 AM #17
Sencha Docs / Ext 3.x - ( Docs | Examples )
Learning Center / Saki's Examples (for 2.x) / HOWTO - ( Report Bugs | Post Proper Code )
-
30 Jan 2012 12:52 PM #18
What happend with button's borders?
How to remove this extra styles:
Code:<div id="button-1023" class="x-btn x-btn-default-small x-noicon x-btn-noicon x-btn-default-small-noicon" style="padding-top: 8px; padding-right: 8px; padding-bottom: 8px; padding-left: 8px; margin-right: auto; margin-left: auto; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; "><em id="button-1023-btnWrap"><button id="button-1023-btnEl" type="button" class="x-btn-center" hidefocus="true" role="button" autocomplete="off" style="width: 84px; "><span id="button-1023-btnInnerEl" class="x-btn-inner" style="width: 84px; ">Text</span><span id="button-1023-btnIconEl" class="x-btn-icon "></span></button></em></div>
-
31 Jan 2012 3:27 AM #19
missing variable name error
missing variable name error
Does anyone else get this error in firefox :
default = fields.get("default"), ext-all-dev.js (line 638)
function = fields.get("function"), ext-all-dev.js (line 640)
default = fields.get("default"), ext-all-debug.js (line 462, col 4)
function = fields.get("function"),ext-all-debug.js (line 464, col 4)
in Chrome :
Uncaught SyntaxError: Unexpected token default ext-all-debug.js:454
Uncaught SyntaxError: Unexpected token function ext-all-debug.js:454
-
31 Jan 2012 11:15 PM #20
Don Griffin
Ext JS Development Team Lead
Check the docs. Learn how to (properly) report a framework issue and a Sencha Cmd issue
"Use the source, Luke!"



Reply With Quote