844 lines
20 KiB
JavaScript
844 lines
20 KiB
JavaScript
/*
|
|
* @author: Qennix
|
|
* Feb 22nd, 2011
|
|
*/
|
|
|
|
//Keyboard Events
|
|
new Ext.KeyMap(document, [
|
|
{
|
|
key: Ext.EventObject.F5,
|
|
fn: function(keycode, e) {
|
|
if (! e.ctrlKey) {
|
|
if (Ext.isIE) {
|
|
// IE6 doesn't allow cancellation of the F5 key, so trick it into
|
|
// thinking some other key was pressed (backspace in this case)
|
|
e.browserEvent.keyCode = 8;
|
|
}
|
|
e.stopEvent();
|
|
document.location = document.location;
|
|
}else{
|
|
//Ext.Msg.alert('Refresh', 'You clicked: CTRL-F5');
|
|
}
|
|
}
|
|
}
|
|
,
|
|
{
|
|
key: Ext.EventObject.DELETE,
|
|
fn: function(k,e){
|
|
iGrid = Ext.getCmp('infoGrid');
|
|
rowSelected = iGrid.getSelectionModel().getSelected();
|
|
if (rowSelected && !deleteButton.isDisabled()){
|
|
deleteSkin();
|
|
}
|
|
}
|
|
},
|
|
{
|
|
key: Ext.EventObject.F2,
|
|
fn: function(k,e){
|
|
//iGrid = Ext.getCmp('infoGrid');
|
|
//rowSelected = iGrid.getSelectionModel().getSelected();
|
|
//if (rowSelected){
|
|
|
|
//}
|
|
}
|
|
}
|
|
]);
|
|
|
|
var store;
|
|
var cmodel;
|
|
var infoGrid;
|
|
var viewport;
|
|
var smodel;
|
|
var newButton;
|
|
var deleteButton;
|
|
var searchButton;
|
|
var searchText;
|
|
var contextMenu;
|
|
|
|
var classicSkin = '00000000000000000000000000000001';
|
|
|
|
Ext.onReady(function(){
|
|
Ext.QuickTips.init();
|
|
|
|
newButton = new Ext.Action({
|
|
text: _('ID_NEW'),
|
|
icon: '/images/add_18.png',
|
|
disabled: false,
|
|
handler: newSkin
|
|
});
|
|
|
|
|
|
deleteButton = new Ext.Action({
|
|
text: _('ID_DELETE'),
|
|
icon: '/images/delete-16x16.gif',
|
|
handler: deleteSkin,
|
|
disabled: true
|
|
});
|
|
|
|
|
|
importButton = new Ext.Action({
|
|
text: _('ID_IMPORT'),
|
|
icon: '/images/add_building.png',
|
|
handler: importSkin,
|
|
disabled: false
|
|
});
|
|
|
|
exportButton = new Ext.Action({
|
|
text: _('ID_EXPORT'),
|
|
icon: '/images/export_building.png',
|
|
handler: exportSkin,
|
|
disabled: true
|
|
});
|
|
|
|
searchButton = new Ext.Action({
|
|
text: _('ID_SEARCH'),
|
|
handler: DoSearch
|
|
});
|
|
|
|
contextMenu = new Ext.menu.Menu({
|
|
items: [exportButton,deleteButton]
|
|
});
|
|
|
|
searchText = new Ext.form.TextField ({
|
|
id: 'searchTxt',
|
|
ctCls:'pm_search_text_field',
|
|
allowBlank: true,
|
|
width: 150,
|
|
emptyText: _('ID_EMPTY_SEARCH'),
|
|
listeners: {
|
|
specialkey: function(f,e){
|
|
if (e.getKey() == e.ENTER) {
|
|
DoSearch();
|
|
}
|
|
},
|
|
focus: function(f,e) {
|
|
var row = infoGrid.getSelectionModel().getSelected();
|
|
infoGrid.getSelectionModel().deselectRow(infoGrid.getStore().indexOf(row));
|
|
}
|
|
}
|
|
});
|
|
|
|
clearTextButton = new Ext.Action({
|
|
text: 'X',
|
|
ctCls:"pm_search_x_button_des",
|
|
handler: GridByDefault
|
|
});
|
|
|
|
smodel = new Ext.grid.RowSelectionModel({
|
|
singleSelect: true,
|
|
listeners:{
|
|
rowselect: function(sm){
|
|
rowSelected = infoGrid.getSelectionModel().getSelected();
|
|
|
|
if((rowSelected.data.SKIN_FOLDER_ID)&&(rowSelected.data.SKIN_FOLDER_ID!="classic")&&(rowSelected.data.SKIN_FOLDER_ID!="lurana")){
|
|
exportButton.enable();
|
|
|
|
if (rowSelected.data.SKIN_STATUS!='Inactive') {
|
|
deleteButton.disable();
|
|
} else {
|
|
deleteButton.enable();
|
|
}
|
|
|
|
}else{
|
|
exportButton.disable();
|
|
deleteButton.disable();
|
|
}
|
|
},
|
|
rowdeselect: function(sm){
|
|
exportButton.disable();
|
|
deleteButton.disable();
|
|
}
|
|
}
|
|
});
|
|
|
|
storeSkins = new Ext.data.JsonStore({
|
|
root: 'skins',
|
|
totalProperty: 'totalCount',
|
|
idProperty: 'SKIN_FOLDER_ID',
|
|
autoLoad : false,
|
|
remoteSort: false,
|
|
fields: [
|
|
'SKIN_FOLDER_ID',
|
|
'SKIN_NAME'
|
|
],
|
|
proxy: new Ext.data.HttpProxy({
|
|
url: 'skin_Ajax?action=skinList'
|
|
})
|
|
});
|
|
|
|
store = new Ext.data.GroupingStore( {
|
|
proxy : new Ext.data.HttpProxy({
|
|
url: 'skin_Ajax?action=skinList&activeskin=1'
|
|
}),
|
|
reader : new Ext.data.JsonReader( {
|
|
root: 'skins',
|
|
totalProperty: 'total_skins',
|
|
fields : [
|
|
{
|
|
name : 'SKIN_ID'
|
|
},
|
|
|
|
{
|
|
name : 'SKIN_FOLDER_ID'
|
|
},
|
|
|
|
{
|
|
name : 'SKIN_NAME'
|
|
},
|
|
|
|
{
|
|
name : 'SKIN_WORKSPACE'
|
|
},
|
|
|
|
{
|
|
name : 'SKIN_DESCRIPTION'
|
|
},
|
|
|
|
{
|
|
name : 'SKIN_AUTHOR'
|
|
},
|
|
|
|
{
|
|
name : 'SKIN_CREATEDATE'
|
|
},
|
|
|
|
{
|
|
name : 'SKIN_MODIFIEDDATE'
|
|
},
|
|
|
|
{
|
|
name : 'SKIN_STATUS'
|
|
}
|
|
]
|
|
})
|
|
});
|
|
|
|
cmodel = new Ext.grid.ColumnModel({
|
|
defaults: {
|
|
width: 50,
|
|
sortable: true
|
|
},
|
|
columns: [
|
|
{
|
|
id:'SKIN_UID',
|
|
dataIndex: 'SKIN_UID',
|
|
hidden:true,
|
|
hideable:false
|
|
},
|
|
|
|
{
|
|
header: _('ID_NAME'),
|
|
dataIndex: 'SKIN_NAME',
|
|
width: 80,
|
|
align:'left',
|
|
renderer: selectedSkinChecked
|
|
},
|
|
|
|
{
|
|
header: _('ID_ROOT_FOLDER'),
|
|
dataIndex: 'SKIN_WORKSPACE',
|
|
width: 80,
|
|
align:'left',
|
|
renderer: nameWorkspace
|
|
},
|
|
|
|
{
|
|
header: _('ID_DESCRIPTION'),
|
|
dataIndex: 'SKIN_DESCRIPTION',
|
|
width: 200,
|
|
align:'left',
|
|
renderer: selectedSkin
|
|
},
|
|
|
|
{
|
|
header: _('ID_AUTHOR'),
|
|
dataIndex: 'SKIN_AUTHOR',
|
|
width: 80,
|
|
align:'left',
|
|
renderer: selectedSkin
|
|
},
|
|
|
|
{
|
|
header: _('ID_CREATE'),
|
|
dataIndex: 'SKIN_CREATEDATE',
|
|
width: 50,
|
|
align:'center',
|
|
renderer: showdate
|
|
},
|
|
|
|
{
|
|
header: _('ID_UPDATE_DATE'),
|
|
dataIndex: 'SKIN_MODIFIEDDATE',
|
|
width: 50,
|
|
align:'center',
|
|
renderer: showdate
|
|
},
|
|
|
|
{
|
|
header: _('ID_STATUS'),
|
|
dataIndex: 'SKIN_STATUS',
|
|
width: 50,
|
|
align:'center',
|
|
renderer: selectedSkin
|
|
}
|
|
|
|
]
|
|
});
|
|
|
|
infoGrid = new Ext.grid.GridPanel({
|
|
region: 'center',
|
|
layout: 'fit',
|
|
id: 'infoGrid',
|
|
height:100,
|
|
autoWidth : true,
|
|
stateful : true,
|
|
stateId : 'gridSkinList',
|
|
enableColumnResize: true,
|
|
enableHdMenu: true,
|
|
frame:false,
|
|
//iconCls:'icon-grid',
|
|
columnLines: false,
|
|
viewConfig: {
|
|
forceFit:true
|
|
},
|
|
title : _('ID_SKINS'),
|
|
store: store,
|
|
cm: cmodel,
|
|
sm: smodel,
|
|
tbar: [newButton, '-', importButton,exportButton,'-',deleteButton, {
|
|
xtype: 'tbfill'
|
|
}, searchText,clearTextButton,searchButton],
|
|
listeners: {
|
|
rowdblclick: function(grid, n,e){
|
|
rowSelected = infoGrid.getSelectionModel().getSelected();
|
|
if((rowSelected.data.SKIN_FOLDER_ID)&&((rowSelected.data.SKIN_FOLDER_ID!=""))){
|
|
viewport.getEl().mask(_('ID_SKIN_SWITCHING'));
|
|
changeSkin(rowSelected.data.SKIN_FOLDER_ID,SYS_SKIN);
|
|
}
|
|
}
|
|
},
|
|
view: new Ext.grid.GroupingView({
|
|
forceFit:true,
|
|
groupTextTpl: '{text}'
|
|
})
|
|
});
|
|
|
|
infoGrid.on('rowcontextmenu',
|
|
function (grid, rowIndex, evt) {
|
|
var sm = grid.getSelectionModel();
|
|
sm.selectRow(rowIndex, sm.isSelected(rowIndex));
|
|
},
|
|
this
|
|
);
|
|
|
|
infoGrid.on('contextmenu', function(evt){
|
|
evt.preventDefault();
|
|
}, this);
|
|
infoGrid.addListener('rowcontextmenu',onMessageContextMenu, this);
|
|
infoGrid.store.load();
|
|
|
|
viewport = new Ext.Viewport({
|
|
layout: 'fit',
|
|
autoScroll: false,
|
|
items: [
|
|
infoGrid
|
|
]
|
|
});
|
|
});
|
|
|
|
gotWildCard = function (value){
|
|
var currentSkinWildcard = '@';
|
|
if(value.length <= 0){
|
|
return false;
|
|
}
|
|
return (value[0] == currentSkinWildcard);
|
|
}
|
|
|
|
setBoldItalic = function(value)
|
|
{
|
|
return '<b><i>' + value + '</i></b>';
|
|
}
|
|
|
|
//Function format dates
|
|
showdate = function (value){
|
|
if(gotWildCard(value)){
|
|
return setBoldItalic(_DF(value.substring(1)));
|
|
}
|
|
return _DF(value);
|
|
};
|
|
|
|
selectedSkin = function (value){
|
|
if(gotWildCard(value)){
|
|
deleteButton.disable();
|
|
return setBoldItalic(value.substring(1));
|
|
}
|
|
return value;
|
|
};
|
|
|
|
selectedSkinChecked = function (value){
|
|
if(value[0]=='@'){
|
|
str = value.substring(1);
|
|
return '<b><i><img src="/images/checkedsmall.gif">' + str + '</i></b>';
|
|
}
|
|
return value;
|
|
};
|
|
nameWorkspace = function (value){
|
|
if(value[0]=='@'){
|
|
str = value.substring(1);
|
|
return '<b><i>' + ((value == _('ID_GLOBAL')) ? value : _('ID_WORKSPACE')) + '</i></b>';
|
|
}
|
|
if (value != _('ID_GLOBAL')) {
|
|
value = _('ID_WORKSPACE');
|
|
}
|
|
return value;
|
|
};
|
|
|
|
|
|
//Funtion Handles Context Menu Opening
|
|
onMessageContextMenu = function (grid, rowIndex, e) {
|
|
e.stopEvent();
|
|
var coords = e.getXY();
|
|
contextMenu.showAt([coords[0], coords[1]]);
|
|
};
|
|
|
|
//Do Nothing Function
|
|
DoNothing = function(){};
|
|
|
|
newSkin = function(){
|
|
newDialog = new Ext.Window( {
|
|
id: "newDialog",
|
|
title:_('ID_NEW_SKIN'),
|
|
autoCreate: true,
|
|
modal:true,
|
|
width:400,
|
|
autoHeight:true,
|
|
shadow:true,
|
|
minWidth:100,
|
|
minHeight:50,
|
|
proxyDrag: true,
|
|
resizable: true,
|
|
keys: {
|
|
key: 27,
|
|
fn : function(){
|
|
newDialog.hide();
|
|
}
|
|
},
|
|
items:[
|
|
{
|
|
xtype:'form',
|
|
autoScroll:true,
|
|
autoHeight:true,
|
|
id:"newform",
|
|
fileUpload:true,
|
|
labelWidth:100,
|
|
url:'skin_Ajax',
|
|
frame:false,
|
|
items:[
|
|
{
|
|
xtype:'textfield',
|
|
id:'skinName',
|
|
allowBlank: false,
|
|
width:200,
|
|
emptyText: _('ID_SKIN_NAME_REQUIRED'),
|
|
fieldLabel:_('ID_NAME'),
|
|
enableKeyEvents:true,
|
|
vtype:'alphanum',
|
|
listeners: {
|
|
keyup:function(a,b,c){
|
|
|
|
Ext.getCmp('newform').getForm().findField('skinFolder').setValue(a.getValue().toLowerCase());
|
|
}
|
|
|
|
}
|
|
},
|
|
{
|
|
xtype:'textfield',
|
|
emptyText: _('ID_SKIN_FOLDER_REQUIRED'),
|
|
id:'skinFolder',
|
|
fieldLabel:_('ID_SKIN_FOLDER'),
|
|
width:200,
|
|
vtype:'alphanum',
|
|
autoCreate: {
|
|
tag: 'input',
|
|
type: 'text',
|
|
size: '20',
|
|
autocomplete: 'off',
|
|
maxlength: '10'
|
|
}
|
|
},
|
|
{
|
|
xtype:'textarea',
|
|
id:'skinDescription',
|
|
fieldLabel:_('ID_DESCRIPTION'),
|
|
width:200
|
|
},
|
|
{
|
|
xtype:'textfield',
|
|
id:'skinAuthor',
|
|
emptyText : _('ID_SKIN_TEAM'),
|
|
value : _('ID_SKIN_TEAM'),
|
|
allowBlank: false,
|
|
width:200,
|
|
fieldLabel:_('ID_AUTHOR')
|
|
},
|
|
new Ext.form.ComboBox({
|
|
id:'skinBase',
|
|
fieldLabel : _('ID_SKIN_BASE'),
|
|
editable : false,
|
|
store: storeSkins,
|
|
valueField :'SKIN_FOLDER_ID',
|
|
displayField :'SKIN_NAME',
|
|
submitValue:true,
|
|
typeAhead : false,
|
|
triggerAction : 'all',
|
|
allowBlank: false,
|
|
selectOnFocus:true,
|
|
width:200
|
|
}),
|
|
{
|
|
xtype: 'radio',
|
|
name: 'workspace',
|
|
inputValue: 'global',
|
|
checked: true,
|
|
boxLabel: _('ID_ALL_WORKSPACES')
|
|
},
|
|
{
|
|
xtype: 'radio',
|
|
name: 'workspace',
|
|
inputValue: 'current',
|
|
boxLabel: _('ID_CURRENT_WORKSPACE')
|
|
}
|
|
],
|
|
buttons:[
|
|
{
|
|
text:_('ID_SAVE'),
|
|
handler: function() {
|
|
//statusBarMessage( _('ID_UPLOADING_FILE'), true, true );
|
|
newDialog.getEl().mask(_('ID_SKIN_CREATING'));
|
|
form = Ext.getCmp("newform").getForm();
|
|
|
|
//Ext.getCmp("uploadform").getForm().submit();
|
|
//console.log(form);
|
|
//console.log(form.url);
|
|
Ext.getCmp("newform").getForm().submit({
|
|
//reset: true,
|
|
reset: false,
|
|
waitTitle : " ",
|
|
success: function(form, action) {
|
|
|
|
store.reload();
|
|
|
|
Ext.getCmp("newDialog").destroy();
|
|
PMExt.notify(_('ID_SKINS'),_('ID_SKIN_SUCCESS_CREATE'));
|
|
},
|
|
failure: function(form, action) {
|
|
if (typeof(action.failureType) != 'undefined') {
|
|
Ext.MessageBox.alert("error", _('ID_REQUIRED_FIELDS_ERROR'));
|
|
newDialog.getEl().unmask();
|
|
return;
|
|
} else {
|
|
Ext.getCmp("newDialog").destroy();
|
|
if( !action.result ) {
|
|
Ext.MessageBox.alert( _('ID_ERROR') , action.response.responseText);
|
|
return;
|
|
}
|
|
Ext.MessageBox.alert( _('ID_ERROR') , action.result.error);
|
|
}
|
|
},
|
|
scope: Ext.getCmp("newform"),
|
|
// add some vars to the request, similar to hidden fields
|
|
params: {
|
|
action: "newSkin",
|
|
requestType: "xmlhttprequest"
|
|
}
|
|
});
|
|
}
|
|
},
|
|
{
|
|
text:_('ID_CANCEL'),
|
|
handler: function() {
|
|
Ext.getCmp("newDialog").destroy();
|
|
}
|
|
}
|
|
]
|
|
}
|
|
]
|
|
|
|
});
|
|
newDialog.on( 'hide', function() {
|
|
newDialog.destroy(true);
|
|
} );
|
|
newDialog.show();
|
|
}
|
|
importSkin = function(){
|
|
importDialog = new Ext.Window( {
|
|
id: "importDialog",
|
|
title:_('ID_UPLOAD'),
|
|
autoCreate: true,
|
|
modal:true,
|
|
width:400,
|
|
autoHeight:true,
|
|
shadow:true,
|
|
minWidth:100,
|
|
minHeight:50,
|
|
proxyDrag: true,
|
|
resizable: true,
|
|
keys: {
|
|
key: 27,
|
|
fn : function(){
|
|
importDialog.hide();
|
|
}
|
|
},
|
|
items:[
|
|
{
|
|
xtype:'form',
|
|
autoScroll:true,
|
|
autoHeight:true,
|
|
id:"uploadform",
|
|
fileUpload:true,
|
|
labelWidth:90,
|
|
url:'skin_Ajax',
|
|
//tooltip:"Max File Size <strong>XXX MB</strong><br />Max Post Size<strong>XXX MB</strong><br />",
|
|
frame:false,
|
|
items:[
|
|
//{
|
|
// xtype:"displayfield",
|
|
// value:"Max File Size <strong>XXX MB</strong><br />Max Post Size<strong>XXX MB</strong><br />"
|
|
//},
|
|
{
|
|
xtype:"fileuploadfield",
|
|
fieldLabel: _('ID_FILE'),
|
|
id: "uploadedFile",
|
|
name: "uploadedFile",
|
|
width: 190,
|
|
buttonText: _('ID_BROWSE'),
|
|
buttonOnly: false
|
|
},
|
|
{
|
|
xtype: "checkbox",
|
|
fieldLabel: _('ID_OVERWRITE'),
|
|
name: "overwrite_files",
|
|
checked: true
|
|
},
|
|
{
|
|
xtype: 'radio',
|
|
name: 'workspace',
|
|
inputValue: 'global',
|
|
checked: true,
|
|
boxLabel: _('ID_ALL_WORKSPACES')
|
|
},
|
|
{
|
|
xtype: 'radio',
|
|
name: 'workspace',
|
|
inputValue: 'current',
|
|
boxLabel: _('ID_CURRENT_WORKSPACE')
|
|
}
|
|
],
|
|
buttons:[
|
|
{
|
|
text:_('ID_SAVE'),
|
|
handler: function() {
|
|
//statusBarMessage( _('ID_UPLOADING_FILE'), true, true );
|
|
importDialog.getEl().mask(_('ID_SKIN_IMPORTING'));
|
|
form = Ext.getCmp("uploadform").getForm();
|
|
|
|
//Ext.getCmp("uploadform").getForm().submit();
|
|
//console.log(form);
|
|
//console.log(form.url);
|
|
Ext.getCmp("uploadform").getForm().submit({
|
|
//reset: true,
|
|
reset: false,
|
|
waitTitle : " ",
|
|
success: function(form, action) {
|
|
|
|
store.reload();
|
|
|
|
Ext.getCmp("importDialog").destroy();
|
|
PMExt.notify(_('ID_SKINS'),_('ID_SKIN_SUCCESS_IMPORTED'));
|
|
},
|
|
failure: function(form, action) {
|
|
Ext.getCmp("importDialog").destroy();
|
|
|
|
if( !action.result ) {
|
|
Ext.MessageBox.alert( _('ID_ERROR') , _('ID_ERROR'));
|
|
return;
|
|
}
|
|
Ext.MessageBox.alert( _('ID_ERROR') , action.result.error);
|
|
|
|
},
|
|
scope: Ext.getCmp("uploadform"),
|
|
// add some vars to the request, similar to hidden fields
|
|
params: {
|
|
option: "standardupload",
|
|
action: "importSkin",
|
|
requestType: "xmlhttprequest",
|
|
confirm: "true"
|
|
}
|
|
});
|
|
}
|
|
},
|
|
{
|
|
text:_('ID_CANCEL'),
|
|
handler: function() {
|
|
Ext.getCmp("importDialog").destroy();
|
|
}
|
|
}
|
|
]
|
|
}
|
|
]
|
|
|
|
});
|
|
// importDialog.doLayout();
|
|
|
|
// recalculate
|
|
// Window size
|
|
//importDialog.syncSize();
|
|
// center the window
|
|
//importDialog.center();
|
|
importDialog.on( 'hide', function() {
|
|
importDialog.destroy(true);
|
|
} );
|
|
importDialog.show();
|
|
};
|
|
exportSkin = function(){
|
|
viewport.getEl().mask(_('ID_SKIN_EXPORTING'));
|
|
rowSelected = infoGrid.getSelectionModel().getSelected();
|
|
if((rowSelected.data.SKIN_FOLDER_ID)&&((rowSelected.data.SKIN_FOLDER_ID!="classic"))){
|
|
Ext.Ajax.request({
|
|
url: 'skin_Ajax',
|
|
params: {
|
|
action: 'exportSkin',
|
|
SKIN_FOLDER_ID: rowSelected.data.SKIN_FOLDER_ID
|
|
},
|
|
success: function(r,o){
|
|
viewport.getEl().unmask();
|
|
var resp = Ext.util.JSON.decode(r.responseText);
|
|
if (resp.success){
|
|
try {
|
|
Ext.destroy(Ext.get('downloadIframe'));
|
|
}
|
|
catch(e) {}
|
|
Ext.DomHelper.append(document.body, {
|
|
tag: 'iframe',
|
|
id:'downloadIframe',
|
|
frameBorder: 0,
|
|
width: 0,
|
|
height: 0,
|
|
css: 'display:none;visibility:hidden;height:0px;',
|
|
src: 'skin_Ajax?action=streamSkin&file='+resp.message
|
|
});
|
|
viewport.getEl().unmask();
|
|
}else{
|
|
viewport.getEl().unmask();
|
|
Ext.Msg.alert( _('ID_ALERT') , resp.message);
|
|
//PMExt.error(_('ID_SKINS'),_('ID_MSG_CANNOT_EXPORT_SKIN'));
|
|
}
|
|
},
|
|
failure: function(r,o){
|
|
viewport.getEl().unmask();
|
|
PMExt.error(_('ID_SKINS'),_('ID_MSG_CANNOT_EXPORT_SKIN'));
|
|
}
|
|
});
|
|
}else{
|
|
PMExt.error(_('ID_SKINS'),_('ID_MSG_CANNOT_EXPORT_DEFAULT_SKIN'));
|
|
}
|
|
}
|
|
|
|
|
|
|
|
//Load Grid By Default
|
|
GridByDefault = function(){
|
|
searchText.reset();
|
|
infoGrid.store.load();
|
|
};
|
|
|
|
//Do Search Function
|
|
DoSearch = function(){
|
|
infoGrid.store.load({
|
|
params: {
|
|
textFilter: searchText.getValue()
|
|
}
|
|
});
|
|
};
|
|
|
|
|
|
|
|
deleteSkin = function(){
|
|
Ext.Msg.confirm(_('ID_CONFIRM'),_('ID_CONFIRM_DELETE_SKIN'),
|
|
function(btn, text){
|
|
if (btn=='yes'){
|
|
viewport.getEl().mask(_('ID_PROCESSING'));
|
|
Ext.Ajax.request({
|
|
url: 'skin_Ajax',
|
|
params: {
|
|
action: 'deleteSkin',
|
|
SKIN_FOLDER_ID: rowSelected.data.SKIN_FOLDER_ID
|
|
},
|
|
success: function(r,o){
|
|
viewport.getEl().unmask();
|
|
deleteButton.disable();
|
|
|
|
store.reload();
|
|
PMExt.notify(_('ID_SKINS'),_('ID_SKIN_SUCCESS_DELETE'));
|
|
},
|
|
failure: function(r,o){
|
|
viewport.getEl().unmask();
|
|
}
|
|
});
|
|
}
|
|
}
|
|
);
|
|
}
|
|
|
|
function createCookie (name, value, time) {
|
|
if (time) {
|
|
var date = new Date();
|
|
date.setTime(date.getTime()+(time*24*60*60*1000));
|
|
var expires = "; expires="+date.toGMTString();
|
|
} else {
|
|
var expires = "";
|
|
}
|
|
document.cookie = name+"="+value+expires+"; path=/"+SYS_SYS;
|
|
}
|
|
|
|
function changeSkin(newSkin,currentSkin){
|
|
Ext.Ajax.request({
|
|
url: 'clearCompiledAjax',
|
|
params: {
|
|
htmlCache: true
|
|
},
|
|
success: function(r, o){
|
|
var response = Ext.util.JSON.decode(r.responseText);
|
|
if (response.success) {
|
|
currentLocation = parent.parent.location.href;
|
|
createCookie ('workspaceSkin', newSkin, '1');
|
|
if (currentSkin.substring(0,2) != 'ux') {
|
|
if (newSkin.substring(0,2) == 'ux') {
|
|
newLocation = currentLocation.replace("/" + currentSkin + "/setup/", "/" + newSkin + "/");
|
|
} else {
|
|
newLocation = currentLocation.replace("/" + currentSkin + "/", "/" + newSkin + "/");
|
|
}
|
|
} else {
|
|
if (newSkin.substring(0,2) == 'ux') {
|
|
newLocation = currentLocation.replace("/" + currentSkin + "/", "/" + newSkin + "/");
|
|
} else {
|
|
newLocation = currentLocation.replace("/" + currentSkin + "/", "/" + newSkin + "/setup/");
|
|
}
|
|
}
|
|
var point = newLocation.indexOf('s=SKINS');
|
|
if (point == -1) {
|
|
newLocation = newLocation +"?s=SKINS";
|
|
}
|
|
parent.parent.location = newLocation;
|
|
} else {
|
|
viewport.getEl().unmask();
|
|
PMExt.error(_('ID_SKINS'), response.message);
|
|
}
|
|
},
|
|
failure: function(r, o){
|
|
viewport.getEl().unmask();
|
|
PMExt.error(_('ID_SKINS'), o.result.error);
|
|
}
|
|
});
|
|
}
|