I need a dropdown next to a column header. I'm doing that by adding an appropriated HTML in columns' name:
Column definition:
{name: "<span>My Column</span> <select><option>A</option><option>B</option></select>",...}
This works fine. However, when the grid rerenders the headers the dropdown is reset to the default value.
Is there a callback I can use to set the wanted value (the new HTML with the last selected option)?
Can I prevent the headers from being rerender?
Thanks in advance.