Fixed display problem skins and dates in internet explorer
This commit is contained in:
@@ -46,6 +46,8 @@ $oHeadPublisher->addExtJsScript('setup/skinList', false); //adding a javascri
|
||||
$oHeadPublisher->addContent('setup/skinList'); //adding a html file .html.
|
||||
$oHeadPublisher->assign('CONFIG', $Config);
|
||||
|
||||
$oHeadPublisher->assign('FORMATS',$c->getFormats());
|
||||
|
||||
G::RenderPage('publish', 'extJs');
|
||||
die;
|
||||
|
||||
@@ -135,7 +137,7 @@ if( $access != 1 ){
|
||||
G::LoadClass( 'ArrayPeer');
|
||||
$c = new Criteria ('dbarray');
|
||||
$c->setDBArrayTable('plugins');
|
||||
//$c->addAscendingOrderByColumn ('id');
|
||||
$c->addAscendingOrderByColumn ('id');
|
||||
|
||||
$G_MAIN_MENU = 'processmaker';
|
||||
$G_ID_MENU_SELECTED = 'SETUP';
|
||||
@@ -145,5 +147,6 @@ if( $access != 1 ){
|
||||
$G_PUBLISH = new Publisher;
|
||||
|
||||
$G_PUBLISH->AddContent( 'propeltable', 'paged-table', 'setup/skinsList', $c );
|
||||
|
||||
G::RenderPage('publishBlank', 'blank');
|
||||
|
||||
|
||||
@@ -171,8 +171,8 @@ Ext.onReady(function(){
|
||||
{name : 'SKIN_NAME'},
|
||||
{name : 'SKIN_DESCRIPTION'},
|
||||
{name : 'SKIN_AUTHOR'},
|
||||
{name : 'SKIN_CREATEDATE', type: 'date'},
|
||||
{name : 'SKIN_MODIFIEDDATE', type: 'date'},
|
||||
{name : 'SKIN_CREATEDATE'},
|
||||
{name : 'SKIN_MODIFIEDDATE'},
|
||||
{name : 'SKIN_STATUS'}
|
||||
]
|
||||
})
|
||||
@@ -188,8 +188,8 @@ Ext.onReady(function(){
|
||||
{header: _('ID_NAME'), dataIndex: 'SKIN_NAME', width: 100, align:'left'},
|
||||
{header: _('ID_DESCRIPTION'), dataIndex: 'SKIN_DESCRIPTION', width: 200, align:'left'},
|
||||
{header: _('ID_OWNER'), dataIndex: 'SKIN_AUTHOR', width: 69, align:'center'},
|
||||
{header: _('ID_CREATE'), dataIndex: 'SKIN_CREATEDATE', width: 69, align:'center'},
|
||||
{header: _('ID_UPDATE_DATE'), dataIndex: 'SKIN_MODIFIEDDATE', width: 69, align:'center'},
|
||||
{header: _('ID_CREATE'), dataIndex: 'SKIN_CREATEDATE', width: 69, align:'center', renderer: showdate},
|
||||
{header: _('ID_UPDATE_DATE'), dataIndex: 'SKIN_MODIFIEDDATE', width: 69, align:'center', renderer: showdate}
|
||||
//{header: _('ID_STATUS'), dataIndex: 'SKIN_STATUS', width: 130, align:'center', renderer: render_status},
|
||||
]
|
||||
});
|
||||
@@ -253,7 +253,7 @@ Ext.onReady(function(){
|
||||
tbar: [newButton, '-', importButton,exportButton, {xtype: 'tbfill'}, searchText,clearTextButton,searchButton],
|
||||
bbar: bbarpaging,
|
||||
listeners: {
|
||||
rowdblclick: EditCalendarAction
|
||||
rowdblclick: DoNothing
|
||||
},
|
||||
view: new Ext.grid.GroupingView({
|
||||
forceFit:true,
|
||||
@@ -282,6 +282,11 @@ Ext.onReady(function(){
|
||||
});
|
||||
});
|
||||
|
||||
//Function format dates
|
||||
showdate = function (value){
|
||||
return _DF(value);
|
||||
};
|
||||
|
||||
//Funtion Handles Context Menu Opening
|
||||
onMessageContextMenu = function (grid, rowIndex, e) {
|
||||
e.stopEvent();
|
||||
|
||||
Reference in New Issue
Block a user