我的CKEditor对话框中有带按钮的文本字段:
{
type: 'hbox',
id: 'search',
children: [
{
type: 'text',
id: 'searchText',
label: 'Search something'
},
{
id: 'searchButton',
type: 'button',
label: 'Search',
onClick: function() {
alert("o.O");
}
}
]
}
问题是,searchButton
与文本字段的标签而不是文本字段本身对齐。我尝试将align
属性添加到hbox
和按钮(值为bottom
和center
),但没有任何结果。
如何将该按钮与文本字段对齐?
答案 0 :(得分:2)
我也面临同样的问题。我通过应用样式属性来解决这个问题。
{
type : 'button',
id : 'searchButton',
label : 'Search',
style : 'margin-top:15px;',
}