diff --git a/workflow/engine/methods/appFolder/appFolderAjax.php b/workflow/engine/methods/appFolder/appFolderAjax.php
index 8bd9bcff5..43094d6da 100755
--- a/workflow/engine/methods/appFolder/appFolderAjax.php
+++ b/workflow/engine/methods/appFolder/appFolderAjax.php
@@ -402,7 +402,7 @@ function uploadDocument(){
$uploadDocumentComponent["xtype"]= "tabpanel";
$uploadDocumentComponent["stateId"]= "upload_tabpanel";
$uploadDocumentComponent["activeTab"]= "uploadform";
- $uploadDocumentComponent["dialogtitle"]= "actupload";
+ $uploadDocumentComponent["dialogtitle"]= G::LoadTranslation('ID_UPLOAD');
$uploadDocumentComponent["stateful"]= true;
$uploadDocumentComponent["stateEvents"]= array("tabchange");
@@ -459,7 +459,7 @@ function uploadDocument(){
$itemA["fileUpload"]=true;
$itemA["labelWidth"]="125";
$itemA["url"]="URL_SCRIPT";
- $itemA["title"]="standardupload";
+ $itemA["title"]=G::LoadTranslation('ID_UPLOAD');
//$itemA["tooltip"]="Max File Size ". ((get_max_file_size() / 1024) / 1024)." MB
Max Post Size". ((get_max_upload_limit() / 1024) / 1024)." MB
";
$itemA["frame"]=true;
$itemA["items"]=array();
@@ -484,7 +484,7 @@ function uploadDocument(){
$itemB=array();
$itemB["xtype"]="checkbox";
- $itemB["fieldLabel"]="overwrite_files";
+ $itemB["fieldLabel"]="Overwrite";//G::LoadTranslation('ID_OVERWRITE');
$itemB["name"]="overwrite_files";
$itemB["checked"]=true;
$itemA["items"][]=$itemB;
@@ -492,10 +492,10 @@ function uploadDocument(){
$itemA["buttons"]=array();
$buttonA=array();
- $buttonA["text"]="btnsave";
+ $buttonA["text"]=G::LoadTranslation('ID_SAVE');
$buttonA["handler"]="function_standardupload_btnsave";
$functionsToReplace["function_standardupload_btnsave"]=' function() {
- statusBarMessage( "upload_processing", true, true );
+ statusBarMessage( "'.G::LoadTranslation('ID_UPLOADING_FILE').'", true, true );
form = Ext.getCmp("uploadform").getForm();
//Ext.getCmp("uploadform").getForm().submit();
@@ -534,7 +534,7 @@ function uploadDocument(){
$buttonA=array();
- $buttonA["text"]= "btncancel";
+ $buttonA["text"]= G::LoadTranslation('ID_CANCEL');
$buttonA["handler"]="function_standardupload_btncancel";
$functionsToReplace["function_standardupload_btncancel"]=' function() { Ext.getCmp("dialog").destroy(); }';
$itemA["buttons"][]=$buttonA;
diff --git a/workflow/engine/methods/cases/casesStartPage.php b/workflow/engine/methods/cases/casesStartPage.php
index 50988e9a4..575ff6ed2 100644
--- a/workflow/engine/methods/cases/casesStartPage.php
+++ b/workflow/engine/methods/cases/casesStartPage.php
@@ -1,11 +1,11 @@
addContent( 'cases/casesStartCase'); //adding a html file .html.
break;
- case "documents":
- $labels = G::getTranslations(Array(
- 'ID_FIND_A_PROCESS',
- 'ID_PROCESS_INFORMATION', 'ID_PROCESS', 'ID_TASK', 'ID_DESCRIPTION', 'ID_CATEGORY',
- 'ID_GENERAL_PROCESS_NUMBERS', 'ID_INBOX', 'ID_DRAFT', 'ID_COMPLETED', 'ID_CANCELLED', 'ID_TOTAL_CASES',
- 'ID_CALENDAR', 'ID_CALENDAR_DESCRIPTION', 'ID_WORKING_DAYS', 'ID_DEBUG_MODE',
- 'ID_SUN', 'ID_MON', 'ID_TUE', 'ID_WEN', 'ID_THU', 'ID_FRI', 'ID_SAT',
- 'ID_TITLE_START_CASE', 'ID_STARTING_NEW_CASE', 'ID_ERROR_CREATING_NEW_CASE',
- 'ID_ERROR', 'ID_UNABLE_START_CASE'
+ case "documents":
+ $labels = G::getTranslations(Array(
+ 'ID_DOWNLOAD', 'ID_DOWNLOADING_FILE', 'ID_LOADING', 'ID_NO_ITEMS_SELECTED', 'ID_SERVER_COMMUNICATION_ERROR', 'ID_DELETE',
+ 'ID_DELETE_SELECTED_ITEMS', 'ID_ROOT_FOLDER', 'ID_RELOAD', 'ID_SEARCH', 'ID_NEW_FOLDER', 'ID_COPY',
+ 'ID_MOVE', 'ID_DELETE', 'ID_RENAME', 'ID_DOWNLOAD',
+ 'ID_UPLOAD', 'ID_SHOW_DIRS', 'ID_FILTER_CURRENT_VIEW', 'ID_DISPLAY_EMPTY', 'ID_PAGE', 'ID_FIRST', 'ID_LAST',
+ 'ID_NEXT', 'ID_PREVIOUS', 'ID_DONE',
+ 'ID_NAME', 'ID_VERSION', 'ID_MODIFIED', 'ID_OWNER', 'ID_TYPE', 'ID_PROCESS', 'ID_CASE', 'ID_SIZE', 'ID_PERMISSIONS', 'ID_CONFIRM',
+ 'ID_DIRECTORY'
));
$oHeadPublisher->assign('TRANSLATIONS', $labels);
@@ -91,15 +91,15 @@ switch($page){
$oHeadPublisher->addExtJsScript('cases/casesDocuments', false); //adding a javascript file .js
$oHeadPublisher->addContent( 'cases/casesDocuments'); //adding a html file .html.
break;
- default:
+ default:
- $oHeadPublisher->usingExtJs('ux.treefilterx/Ext.ux.tree.TreeFilterX');
+ $oHeadPublisher->usingExtJs('ux.treefilterx/Ext.ux.tree.TreeFilterX');
- $oHeadPublisher->usingExtJs('ux.locationbar/Ext.ux.LocationBar');
- $oHeadPublisher->usingExtJs('ux.statusbar/ext-statusbar');
- $oHeadPublisher->addExtJsScript('cases/casesStartPage', false); //adding a javascript file .js
- $oHeadPublisher->addContent( 'cases/casesStartPage'); //adding a html file .html.
- break;
+ $oHeadPublisher->usingExtJs('ux.locationbar/Ext.ux.LocationBar');
+ $oHeadPublisher->usingExtJs('ux.statusbar/ext-statusbar');
+ $oHeadPublisher->addExtJsScript('cases/casesStartPage', false); //adding a javascript file .js
+ $oHeadPublisher->addContent( 'cases/casesStartPage'); //adding a html file .html.
+ break;
}
diff --git a/workflow/engine/templates/cases/casesDocuments.js b/workflow/engine/templates/cases/casesDocuments.js
index 6d6c3c6f5..26322e6dc 100644
--- a/workflow/engine/templates/cases/casesDocuments.js
+++ b/workflow/engine/templates/cases/casesDocuments.js
@@ -9,14 +9,15 @@ new Ext.KeyMap(document, {
}
e.stopEvent();
datastore.reload();
- //Ext.getCmp('dirTree').getRootNode().reload();
+ // Ext.getCmp('dirTree').getRootNode().reload();
}else{
- // Ext.Msg.alert(TRANSLATIONS.ID_REFRESH_LABEL, TRANSLATIONS.ID_REFRESH_MESSAGE);
+ // Ext.Msg.alert(TRANSLATIONS.ID_REFRESH_LABEL,
+ // TRANSLATIONS.ID_REFRESH_MESSAGE);
}
}
});
-//Ext.BLANK_IMAGE_URL = 'resources/s.gif';
+// Ext.BLANK_IMAGE_URL = 'resources/s.gif';
Ext.chart.Chart.CHART_URL = '/images/charts.swf';
Ext.FlashComponent.EXPRESS_INSTALL_URL = '/images/expressinstall.swf';
@@ -35,7 +36,7 @@ streamFilefromPM=function(fileStream) {
success: function(response) {
results = Ext.decode(response.responseText);
if(results.success=='success'){
- messageText="Downloading file "+results.message;
+ messageText=TRANSLATIONS.ID_DOWNLOADING_FILE+" "+results.message;
statusBarMessage( messageText, true, true );
try {
Ext.destroy(Ext.get('downloadIframe'));
@@ -81,15 +82,15 @@ function chDir( directory, loadGridOnly ) {
}
tb = ext_itemgrid.getTopToolbar();
- if(directory=="NA"){ //Disable create new folder under NA
+ if(directory=="NA"){ // Disable create new folder under NA
tb.items.get('tb_new').disable();
}else{
tb.items.get('tb_new').enable();
}
-/*
- tb.items.get('tb_delete')[selections[0].get('is_deletable') ? 'enable'
- : 'disable']();
-*/
+/*
+ * tb.items.get('tb_delete')[selections[0].get('is_deletable') ? 'enable' :
+ * 'disable']();
+ */
if( !loadGridOnly ) {
expandTreeToDir( null, directory );
}
@@ -165,7 +166,7 @@ function showLoadingIndicator( el, replaceContent ) {
// console.info("showLoadingIndicator");
if( !el ) return;
var loadingimg = '/images/documents/_indicator.gif';
- var imgtag = '<' + 'img src="'+ loadingimg + '" alt="Loading..." border="0" name="Loading" align="absmiddle" />';
+ var imgtag = '<' + 'img src="'+ loadingimg + '" alt="'+TRANSLATIONS.ID_LOADING+'" border="0" name="'+TRANSLATIONS.ID_LOADING+'" align="absmiddle" />';
if( replaceContent ) {
el.innerHTML = imgtag;
@@ -208,7 +209,7 @@ function openActionDialog( caller, action ) {
}
var dontNeedSelection = { newFolder:1, uploadDocument:1, search:1 };
if( dontNeedSelection[action] == null && selectedRows.length < 1 ) {
- Ext.Msg.alert( 'error','No items Selected');
+ Ext.Msg.alert( 'Error',TRANSLATIONS.ID_NO_ITEMS_SELECTED);
return false;
}
@@ -252,7 +253,7 @@ function openActionDialog( caller, action ) {
scripts: true,
callback: function(oElement, bSuccess, oResponse) {
if( !bSuccess ) {
- msgbox = Ext.Msg.alert( "Ajax communication failure!");
+ msgbox = Ext.Msg.alert( TRANSLATIONS.ID_SERVER_COMMUNICATION_ERROR);
msgbox.setIcon( Ext.MessageBox.ERROR );
}
if( oResponse && oResponse.responseText ) {
@@ -361,19 +362,19 @@ function openActionDialog( caller, action ) {
case 'delete':
var num = selectedRows.length;
- Ext.Msg.confirm('dellink?', String.format("miscdelitems", num ), deleteFiles);
+ Ext.Msg.confirm(TRANSLATIONS.ID_DELETE, String.format(TRANSLATIONS.ID_DELETE_SELECTED_ITEMS, num ), deleteFiles);
break;
case 'download':
fileName=ext_itemgrid.getSelectionModel().getSelected().get('name');
- //alert(ext_itemgrid.getSelectionModel().getSelected().get('downloadLink'));
- //alert(ext_itemgrid.getSelectionModel().getSelected().get('downloadLabel'));
+ // alert(ext_itemgrid.getSelectionModel().getSelected().get('downloadLink'));
+ // alert(ext_itemgrid.getSelectionModel().getSelected().get('downloadLabel'));
streamFilefromPM(ext_itemgrid.getSelectionModel().getSelected().get('downloadLink'));
- /*if(document.location = ext_itemgrid.getSelectionModel().getSelected().get('downloadLink')){
- messageText="Downloading file "+fileName;
- statusBarMessage( messageText, false, true );
- }else{
- alert("sadasd");
- }*/
+ /*
+ * if(document.location =
+ * ext_itemgrid.getSelectionModel().getSelected().get('downloadLink')){
+ * messageText="Downloading file "+fileName; statusBarMessage(
+ * messageText, false, true ); }else{ alert("sadasd"); }
+ */
break;
}
}
@@ -522,7 +523,7 @@ function handleCallback(requestParams, node) {
function statusBarMessage( msg, isLoading, success ) {
// console.log("Status Bar needed");
- //console.log(msg);
+ // console.log(msg);
var statusBar = Ext.getCmp('statusPanel');
if( !statusBar ) return;
// console.log("Status bar acceced: "+msg);
@@ -534,18 +535,18 @@ function handleCallback(requestParams, node) {
}
if( success ) {
statusBar.setStatus({
- text: 'Success: ' + msg,
+ text: '' + msg,
iconCls: 'success',
clear: true
});
- Ext.msgBoxSlider.msg('Success', msg );
+ Ext.msgBoxSlider.msg('', msg );
} else {
statusBar.setStatus({
- text: 'error: ' + msg,
+ text: 'Error: ' + msg,
iconCls: 'error',
clear: true
});
- Ext.msgBoxSlider.msg('error', msg );
+ Ext.msgBoxSlider.msg('Error', msg );
}
@@ -685,10 +686,16 @@ function renderType(value, p, record) {
function renderVersion(value, p, record) {
if(record.get("appDocVersionable")=="1"){
if(value>1){
- //return String.format('{0} ', value,'/images/documents/_up.png','Upload new Version');
+ // return String.format('{0}
',
+ // value,'/images/documents/_up.png','Upload new Version');
return String.format('{0}', value);
}else{
- //return String.format('{0}
', value,'/images/documents/_up.png','Upload new Version');
+ // return String.format('{0}
',
+ // value,'/images/documents/_up.png','Upload new Version');
return String.format('{0}', value);
}
}else{
@@ -700,11 +707,12 @@ function renderVersionExpander(value, p, record) {
// addcc.png
// system-search.png
p.cellAttr = 'rowspan="2"';
- //return '
Company: {company}
Summary: {desc}
' - ),*/ + // header:'Version', +/* + * tpl : new Ext.Template( 'Company: {company}
Summary: + * {desc}
' ), + */ - //width : 50, - //align : 'center', + // width : 50, + // align : 'center', expandOnEnter: false, expandOnDblClick: false, fixed: false, @@ -957,7 +980,7 @@ var expander = new Ext.ux.grid.RowExpander({ expand : function( expander, record, body, rowIndex) { data = new Array(); getGrid( data, Ext.get( this.grid.getView().getRow( rowIndex)).child( '.ux-row-expander-box')); - //alert( Ext.ComponentMgr.all.length); + // alert( Ext.ComponentMgr.all.length); } }, renderer : renderVersionExpander @@ -969,7 +992,7 @@ renderer : renderVersionExpander var cm = new Ext.grid.ColumnModel([{ id : 'gridcm', // id assigned so we can apply custom css (e.g. // .x-grid-col-topic b { color:#333 }) - header : "Name", + header : TRANSLATIONS.ID_NAME, dataIndex : 'name', width : 200, renderer : renderFileName, @@ -978,17 +1001,17 @@ var cm = new Ext.grid.ColumnModel([{ }), css : 'white-space:normal;' }, { - header : "Version", + header : TRANSLATIONS.ID_VERSION, dataIndex : 'docVersion', width : 50, align : 'center', renderer : renderVersion -}, /*expander,*/{ - header : "Modified", +}, /* expander, */{ + header : TRANSLATIONS.ID_MODIFIED, dataIndex : 'appDocCreateDate', width : 65 }, { - header : "Owner", + header : TRANSLATIONS.ID_OWNER, dataIndex : 'owner', width : 100 // sortable : false @@ -1000,36 +1023,35 @@ var cm = new Ext.grid.ColumnModel([{ // align : 'right' // renderer : renderType }, { - header : "Type", + header : TRANSLATIONS.ID_TYPE, dataIndex : 'type', width : 100, // align : 'right', renderer : renderType }, { - header : "Process", + header : TRANSLATIONS.ID_PROCESS, dataIndex : 'proTitle', width : 150// , // align : 'right' // renderer : renderType }, { - header : "Case", + header : TRANSLATIONS.ID_CASE, dataIndex : 'appLabel', width : 150// , // align : 'right' // renderer : renderType },{ - header : "Size", + header : TRANSLATIONS.ID_SIZE, dataIndex : 'size', width : 50, hidden:true }, { - header : "Permissions", + header : TRANSLATIONS.ID_PERMISSIONS, dataIndex : 'perms', width : 100, hidden:true }, { dataIndex : 'is_deletable', - header : "is_deletable", hidden : true, hideable : false }, { @@ -1140,37 +1162,42 @@ gridCtxMenu = new Ext.menu.Menu({ items : [ { id : 'gc_rename', - iconCls: 'button_menu_ext ss_sprite ss_textfield_rename',//icon : '/images/documents/_fonts.png', - text : 'renamelink', + iconCls: 'button_menu_ext ss_sprite ss_textfield_rename',// icon : + // '/images/documents/_fonts.png', + text : TRANSLATIONS.ID_RENAME, handler : function() { ext_itemgrid.onCellDblClick(ext_itemgrid, gsm.clickedRow, 0); gsm.clickedRow = null; } }, { id : 'gc_copy', - iconCls: 'button_menu_ext ss_sprite ss_page_white_copy',//icon : '/images/documents/_editcopy.png', - text : 'copylink', + iconCls: 'button_menu_ext ss_sprite ss_page_white_copy',// icon : + // '/images/documents/_editcopy.png', + text : TRANSLATIONS.ID_COPY, handler : function() { openActionDialog(this, 'copyAction'); } }, { id : 'gc_move', - iconCls: 'button_menu_ext ss_sprite ss_page_white_go',//icon : '/images/documents/_move.png', - text : 'movelink', + iconCls: 'button_menu_ext ss_sprite ss_page_white_go',// icon : + // '/images/documents/_move.png', + text : TRANSLATIONS.ID_MOVE, handler : function() { openActionDialog(this, 'moveAction'); } }, { id : 'gc_delete', - iconCls: 'button_menu_ext ss_sprite ss_page_white_delete',//icon : '/images/documents/_editdelete.png', - text : 'dellink', + iconCls: 'button_menu_ext ss_sprite ss_page_white_delete',// icon : + // '/images/documents/_editdelete.png', + text : TRANSLATIONS.ID_DELETE, handler : function() { openActionDialog(this, 'delete'); } }, '-', { id : 'gc_download', - iconCls: 'button_menu_ext ss_sprite ss_page_white_put',//icon : '/images/documents/_down.png', - text : 'downlink', + iconCls: 'button_menu_ext ss_sprite ss_page_white_put',// icon : + // '/images/documents/_down.png', + text : TRANSLATIONS.ID_DOWNLOAD, handler : function() { openActionDialog(this, 'download'); } @@ -1178,8 +1205,9 @@ gridCtxMenu = new Ext.menu.Menu({ '-', { id : 'cancel', - iconCls: 'button_menu_ext ss_sprite ss_cross',//icon : '/images/documents/_cancel.png', - text : 'btncancel', + iconCls: 'button_menu_ext ss_sprite ss_cross',// icon : + // '/images/documents/_cancel.png', + text : TRANSLATIONS.ID_CANCEL, handler : function() { gridCtxMenu.hide(); } @@ -1236,8 +1264,10 @@ var dirCtxMenu = new Ext.menu.Menu( items : [ { id : 'dirCtxMenu_new', - iconCls: 'button_menu_ext ss_sprite ss_folder_add',//icon : '/images/documents/_folder_new.png', - text : 'New', + iconCls: 'button_menu_ext ss_sprite ss_folder_add',// icon + // : + // '/images/documents/_folder_new.png', + text : TRANSLATIONS.ID_NEW_FOLDER, handler : function() { dirCtxMenu.hide(); openActionDialog(this, 'newFolder'); @@ -1245,8 +1275,10 @@ var dirCtxMenu = new Ext.menu.Menu( }, { id : 'dirCtxMenu_rename', - iconCls: 'button_menu_ext ss_sprite ss_textfield_rename',//icon : '/images/documents/_fonts.png', - text : 'Rename', + iconCls: 'button_menu_ext ss_sprite ss_textfield_rename',// icon + // : + // '/images/documents/_fonts.png', + text : TRANSLATIONS.ID_RENAME, handler : function() { dirCtxMenu.hide(); openActionDialog(this, 'rename'); @@ -1254,8 +1286,10 @@ var dirCtxMenu = new Ext.menu.Menu( }, { id : 'dirCtxMenu_copy', - icon : '/images/documents/_editcopy.png', - text : 'Copy', + iconCls: 'button_menu_ext ss_sprite ss_page_white_copy',// icon : + // '/images/documents/_editcopy.png', + + text : TRANSLATIONS.ID_COPY, handler : function() { dirCtxMenu.hide(); openActionDialog(this, 'copyAction'); @@ -1263,8 +1297,10 @@ var dirCtxMenu = new Ext.menu.Menu( }, { id : 'dirCtxMenu_move', - iconCls: 'button_menu_ext ss_sprite ss_folder_go',//icon : '/images/documents/_move.png', - text : 'Move', + iconCls: 'button_menu_ext ss_sprite ss_folder_go',// icon + // : + // '/images/documents/_move.png', + text : TRANSLATIONS.ID_MOVE, handler : function() { dirCtxMenu.hide(); openActionDialog(this, 'moveAction'); @@ -1272,17 +1308,20 @@ var dirCtxMenu = new Ext.menu.Menu( }, { id : 'dirCtxMenu_remove', - iconCls: 'button_menu_ext ss_sprite ss_folder_delete',//icon : '/images/documents/_editdelete.png', - text : 'Remove', + iconCls: 'button_menu_ext ss_sprite ss_folder_delete',// icon + // : + // '/images/documents/_editdelete.png', + + text : TRANSLATIONS.ID_DELETE, handler : function() { dirCtxMenu.hide(); var num = 1; Ext.Msg .confirm( - 'Confirm', + TRANSLATIONS.ID_CONFIRM, String .format( - "Delete?", + TRANSLATIONS.ID_DELETE_SELECTED_ITEMS, num), function(btn) { deleteDir(btn, dirCtxMenu.node); @@ -1290,16 +1329,20 @@ var dirCtxMenu = new Ext.menu.Menu( } }, '-', { id : 'dirCtxMenu_reload', - iconCls: 'button_menu_ext ss_sprite ss_arrow_refresh',//icon : '/images/documents/_reload.png', - text : 'Refresh', + iconCls: 'button_menu_ext ss_sprite ss_arrow_refresh',// icon + // : + // '/images/documents/_reload.png', + text : TRANSLATIONS.ID_REFRESH_LABEL, handler : function() { dirCtxMenu.hide(); dirCtxMenu.node.reload(); } }, '-', { id : 'dirCtxMenu_cancel', - iconCls: 'button_menu_ext ss_sprite ss_cross',//icon : '/images/documents/_cancel.png', - text : 'Cancel', + iconCls: 'button_menu_ext ss_sprite ss_cross',// icon + // : + // '/images/documents/_cancel.png', + text : TRANSLATIONS.ID_CANCEL, handler : function() { dirCtxMenu.hide(); } @@ -1309,24 +1352,27 @@ var copymoveCtxMenu = new Ext.menu.Menu({ id : 'copyCtx', items : [ { id : 'copymoveCtxMenu_copy', - iconCls: 'button_menu_ext ss_sprite ss_page_white_copy',//icon : '/images/documents/_editcopy.png', - text : 'copylink', + iconCls: 'button_menu_ext ss_sprite ss_page_white_copy',// icon : + // '/images/documents/_editcopy.png', + text : TRANSLATIONS.ID_COPY, handler : function() { copymoveCtxMenu.hide(); copymove('copyExecute'); } }, { id : 'copymoveCtxMenu_move', - iconCls: 'button_menu_ext ss_sprite ss_page_white_go',//icon : '/images/documents/_move.png', - text : 'movelink', + iconCls: 'button_menu_ext ss_sprite ss_page_white_go',// icon : + // '/images/documents/_move.png', + text : TRANSLATIONS.ID_MOVE, handler : function() { copymoveCtxMenu.hide(); copymove('moveExecute'); } }, '-', { id : 'copymoveCtxMenu_cancel', - iconCls: 'button_menu_ext ss_sprite ss_cross',//icon : '/images/documents/_cancel.png', - text : 'btncancel', + iconCls: 'button_menu_ext ss_sprite ss_cross',// icon : + // '/images/documents/_cancel.png', + text : TRANSLATIONS.ID_CANCEL, handler : function() { copymoveCtxMenu.hide(); } @@ -1357,7 +1403,7 @@ var documentsTab = { xtype : "treepanel", id : "dirTree", region : "west", - title : 'Directory
',
+ title : TRANSLATIONS.ID_DIRECTORY+'
',
closable : false,
collapsible: true,
collapseMode: 'mini',