This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* A paging toolbar override that fixes the incorrect paging behaviour when navigating | |
* to a certain page (where page no. > 1), doing a remote load of data (i.e.: filtering | |
* data) and size of the remote data is less than store's defined pageSize. | |
* | |
* Compatible with ExtJS 4.2.1. | |
* | |
* @class Ext.toolbar.Paging | |
* @override | |
* @author Bostjan Rihter <[email protected]> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* A paging toolbar override to allow for hiding the refresh button in the toolbar. Compatible with Ext 4.2.1. | |
* | |
* @class Ext.toolbar.Paging | |
* @override | |
* @author Bostjan Rihter <[email protected]> | |
*/ | |
Ext.override(Ext.toolbar.Paging, { | |
/** | |
* @cfg {Boolean} enableRefresh |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* A paging toolbar override to allow for hiding the refresh button in the toolbar. Compatible with Ext 4.2.0. | |
* | |
* @class Ext.toolbar.Paging | |
* @override | |
* @author Bostjan Rihter <[email protected]> | |
*/ | |
Ext.override(Ext.toolbar.Paging, { | |
/** | |
* @cfg {Boolean} enableRefresh |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
########## | |
# EXPORT # | |
########## | |
# export db (schema only) | |
mysqldump -u username -ppassword --no-data --add-drop-database --databases db > db.sql | |
# export db | |
mysqldump -u username -ppassword --add-drop-database --databases db > db.sql |
NewerOlder