ember-table
ember-table copied to clipboard
resize with custom headers
Hi,
Resizing with custom headers seems impossible.
I saw in the code generated by non-custom headers have a <div class="et-header-resize-area"> </div>, that I also added, but it is not working.
Any way I can have a custom header that is resizable?
thanks
We faced this issue too. Appended the below code temporarily in the template for the custom header. Hope this helps
{{#if cell.isResizable}}
<div class="et-header-resize-area"> </div>
{{/if}}