win = Ext.create('widget.window', {
title: 'View Image',
closable: true,
closeAction: 'hide',
width: 600,
minWidth: 350,
height: 550,
layout: {
type: 'border',
padding: 5
},
items:[
listView,
{
region: 'center',
//xtype: 'tabpanel',
minheight: 350,
items: [{
//title: 'Bogus Tab',
xtype : 'image',
id : 'displayimage',
width: 320,
height: 240,
}]
},
{
region: 'north',
margin : "5 0 5 0",
//xtype: 'tabpanel',
minheight: 350,
items: [dr]
}]
});
質問
displayimage
ウィンドウの中央に揃えるには?私は試しalign : 'center'
ましたが、うまくいきません。このばかげた質問を助けてください、どうもありがとうございました!
マージンまたはパディングを使用するかどうか以外は考えがあります。この方法は良くありません
最新のアップデート
var Printtoolbar = Ext.create('Ext.toolbar.Toolbar',{
items:[
{text: 'Print',
id: 'btnPrint',
tooltip: 'Print This Image !',
iconCls: 'print'
}
]
})
var dr = Ext.create('Ext.FormPanel', {
width:650,
bodyPadding: '5px 5px 0',
frame: true,
layout: {
type: 'vbox'
},
items: [{
xtype: 'container',
layout: {
type: 'hbox',
//align: 'stretch',
padding:'0 0 10 0'
},
defaults: {
flex: 1
},
items:[startdt,enddt]
},
{
xtype: 'container',
layout: {
type: 'hbox',
align: 'center',
padding:'0 0 10 0'
},//layout
defaults: {
flex: 1
},//default
items:[cmbVehicle,{
//able to add 1 more items beside combobox
}]//items
},//container
{
xtype: 'button',
id : 'btnShowImage',
text : 'Show Image On List',
scale : 'large',
width : 200,
margin : '0 0 0 180',
}
]
});
var listView = Ext.create('Ext.grid.Panel', {
region: 'west',
id : 'imagelist',
title: 'Select Image',
width: 200,
split: true,
collapsible: true,
floatable: false,
title:'Select Image',
store: ImgStore,
multiSelect: false,
viewConfig: {
emptyText: 'No images to display'
},
columns: [
{
text: 'Date Time Uploaded',
//xtype: 'datecolumn',
//format: 'Y-m-d H:i:s',
flex: 65,
width: 100,
dataIndex: 'PicUploadedDateTime'
}]
});
win = Ext.create('widget.window', {
title: 'View Image',
closable: true,
style:{
'display': 'table-cell',
'vertical-align': 'middle'
},
closeAction: 'hide',
width: 600,
minWidth: 350,
height: 550,
layout: {
type: 'border',
padding: 5
},
items:[
listView,
{
region: 'center',
//xtype: 'tabpanel',
minheight: 350,
items: [Printtoolbar,{
//title: 'Bogus Tab',
xtype : 'image',
id : 'displayimage',
style: {
'display': 'block',
'margin': 'auto'
},
listeners: {
'render': function(img) {
img.up().setBodyStyle({
'display': 'table-cell',
'vertical-align': 'middle'
});
}
},
width: 320,
height: 240,
}]
},
{
region: 'north',
margin : "5 0 5 0",
//xtype: 'tabpanel',
minheight: 350,
items: [dr]
}]
});