Hot answers tagged extjs4
2
I think the best solution here is the following:
Osgaar.prototype.fields.add(new Ext.data.Field({ name: 'fifth', type: 'string', persist: true })); // create Ext.data.Field constructor, not just simple Object
I did a quick look on the Writer implementation, and here is a method that is called by write() when you write data:
getRecordData: ...
2
I think you don't have an error here, but a business rule violation.
I like to differentiate both of them, being the first some unexpected situation (like a database conection loss) and the later some scenario that you know its likely to happen.
For errors, I think the appropiate is to inform the user in a generic fashion (say, "an unexpected error has ...
2
Here is my working code:
var map = new Ext.util.KeyMap({
target: 'search',
eventName: 'keydown', // changed from itemkeydown -> keydown
binding: [{
key: Ext.EventObject.ESC,
scope: this,
fn: function() {
console.log('esc');
},
defaultEventAction: 'preventDefault'
...
2
You would probably want to use a Viewport, and make the Center Region a Container.
The Center Region Container would usually have a Card or Tab layout.
When the user navigates to a new view (Component), you add that view to the Container, and make it active.
The big mistake is to change the URL first. You don't want to do that.
You want to navigate, ...
1
Always put your Proxies in your Models
Always require your child models if using them in hasMany relationships
Always use foreignKey or associationKey in hasMany relationships
Always name your hasMany relationships
Always use fully qualified model names in your hasMany relationship
If you want to load the child models in the same response, you have to ...
1
afterrender is not the event you want to use to determine the heights of components, it fires when the elements have been rendered not after they have been sized. If you are using 4.1 you can use the boxready event which fires only once the the container is intially sized http://docs.sencha.com/ext-js/4-1/#!/api/Ext.AbstractComponent-event-boxready . If ...
1
I don't have any client side validation for that (should I? is there
way to make such validation generic?)
I would always do that. You may use jquery ajax to make a call to a server page and check the data there. This let the user to know that the user name is not available before even clicking on the submit button. That gives a better User ...
1
I have found this solution
var docElm = document.documentElement;
if (docElm.requestFullscreen) {
docElm.requestFullscreen();
}
else if (docElm.mozRequestFullScreen) {
docElm.mozRequestFullScreen();
}
else if (docElm.webkitRequestFullScreen) {
docElm.webkitRequestFullScreen();
}
and for cancelling fullscreen :
if (document.exitFullscreen) {
...
1
First, I would suggest you have validation prior to submitting to server on the client, by providing instant feedback to the user is a good experience.
Second, there are few options you can consider for the actual insert that I have use couple of:
Use store procedure that does the check and the insert and returns the new record as confirmation for ...
1
Like the docs say, a viewport will never get a scrollbar applied directly on to it automatically.
But each of your regions are Ext.panel.Panel components by default which automatically get a scrollbar on overflow.
Try adding a layout: fit config to your viewport.
If that doesn't handle it, add the same config to the panel component that has the scroll ...
1
Use like this:
store.load({
scope : this,
callback: function(records, operation, success) {
//here the store has been loaded so you can use what functions you like.
//This code sum numbers in certain column
sum = 0;
store.each(function (rec) { sum += rec.get('NameColumn'); });
}
});
Only top voted, non community-wiki answers of a minimum length are eligible