i try to build toobar content in a datagrid by code, it work's perfect except for combobox, there is no space between two combobox, padding top and bottom work's fine but not padding left and right!
my code like this :
var toolbar = $('<div style="padding:2px 8px;"></div>')
.
.
var btn = $('<a style="margin-right:8px"></a>').appendTo(toolbar);
btn.combobox({
buttonText: 'Filter',
buttonAlign: 'left',
buttonIcon: 'icon-filter',
width: 300,
editable: false,
data: menu,
});
var btn2 = $('<a style="margin-right:8px"></a>').appendTo(toolbar);
btn2.combobox({
buttonText: 'Search',
buttonAlign: 'left',
buttonIcon: 'icon-search',
width: 300,
editable: false,
data: menu,
});