如何在CKEditor对话框中对齐元素

时间:2015-05-27 15:34:38

标签: ckeditor

我的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和按钮(值为bottomcenter),但没有任何结果。

如何将该按钮与文本字段对齐?

1 个答案:

答案 0 :(得分:2)

我也面临同样的问题。我通过应用样式属性来解决这个问题。

{
    type : 'button',
    id : 'searchButton',
    label : 'Search',
    style : 'margin-top:15px;',        
}