ember-table icon indicating copy to clipboard operation
ember-table copied to clipboard

resize with custom headers

Open momohuri opened this issue 6 years ago • 1 comments

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

momohuri avatar Nov 12 '19 02:11 momohuri

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}}

rahulguptaio avatar Dec 13 '19 08:12 rahulguptaio