Hi,
I need to wrap 2 or more than 2 controls warp by a <div> element in pq-toolbar. so that i can apply css for that div only in toolbar section.
This is my toolbar.
toolbar: {
cls:'pq-toolbar-search',
style: "float:right",
items: [
{ type: 'button', label: 'Add', listeners: [{ 'click': addRow }], icon: 'ui-icon-plus' },
{ type: "<img src='assets/images/magnify-glass.svg' height='18px' class='search-icon' />" },
{ type: 'textbox', attr: 'placeholder="Enter Name to Search"', cls: "searchinput", listeners: [{ 'keyup': filterhandler }] }
]
}
by adding the div element won't affecting my input's listener event.
Is there any way to do that?
Thanks in Advance,
Vignesh.