我试图隐藏边界线,但不能成功!这是提到的边界线的screenshot。
您会注意到,在“导出Excel”和radiofield
之间会出现一条垂直线。在下面,您将找到一些包含这些元素的代码段。我使用了Toolbar
和panel
来创建这些项目。因此,为每个类尝试了几种配置,例如border: false
,frame: false
,bodyBorder: false
,但是没有一个成功隐藏此行。
感谢您的建议。
return [
{
xtype: 'panel',
scrollable: true,
// border: false,
// bodyBorder: false,
// frame: false,
layout: {type: 'hbox', align: 'middle', pack: 'start'},
items: [
{
xtype: 'panel',
// border: false,
// bodyBorder: false,
items: me.listToolbar() //This is end of 'toolbar' class.
},
{
xtype: 'panel',
items: me.subModuleTb() //'radiofield' starts by here
}
]
}
];
这就是所谓的ListToolbar类:
Ext.define('MyApp.ListToolbar', {
extend: 'Ext.toolbar.Toolbar',
alias: 'widget.listtoolbar',
requires: [],
dock: 'top',
//border: 0, //This is not disappear the line as well
//cls: 'list-toolbar //Defined 'border' as zero on all.scss for this cls but did not worked as well!
layout: {
type: 'table',
tdAttrs: { style: 'padding: 5px 10px;' }
},
defaults: {
enableToggle: true
},
scope:this,
items: [
最佳答案
您正在使用什么版本?我希望该边框出现在工具栏中。
您可以在工具栏中使用“边框”:0属性。或者您可以通过添加“ Cls”属性在CSS中进行控制。
Ext.create('Ext.toolbar.Toolbar', {
renderTo: document.body,
**border:0,**
width : 500,
items: [
{
// xtype: 'button', // default for Toolbars
text: 'Button'
},
{
xtype: 'splitbutton',
text : 'Split Button'
},
// begin using the right-justified button container
'->', // same as { xtype: 'tbfill' }
{
xtype : 'textfield',
name : 'field1',
emptyText: 'enter search term'
},
// add a vertical separator bar between toolbar items
'-', // same as {xtype: 'tbseparator'} to create Ext.toolbar.Separator
'text 1', // same as {xtype: 'tbtext', text: 'text1'} to create Ext.toolbar.TextItem
{ xtype: 'tbspacer' },// same as ' ' to create Ext.toolbar.Spacer
'text 2',
{ xtype: 'tbspacer', width: 50 }, // add a 50px space
'text 3'
});
关于javascript - 如何禁用Ext JS面板和工具栏的边界线?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/48638223/