Dan Monroe
Dan Monroe
I would like to see this as being able to set widths as percentages OR by px. Some of my columns, I don't want to change size while the others...
I got this to work without changes with: ``` let columns = [ { name: 'Name 1', valuePath: 'name', cssClass: 'customCSS1' }, { name: 'Column 2', valuePath: 'foo', cssClass: 'customCSS2'...
@rahul9fret What exactly doesn't resize? The thead columns? I am having a "resize" issue with IE11 in that the thead column headers do not resize when the tbody columns do...
Sorry, I meant IE11
I was able to fix my IE11 resize issue with CSS (flex).
I do this in my addon. If you'd like to know how, I can show you what I do. It's not great, but it works.
Ok, here it is... Chris can tell me how dumb this is (and if there are any memory leaks), but it works. ;) In my template: ``` {{#table.head sortFunction=emberTableSortFunction columns=columns...
The way I'm doing this is setting attributes on the column definition. I was using the truth helpers but wound up removing it. ``` {{#if columnValue.isStatus}} {{else if columnValue.isMedication}} {{else...
I went to the top of emberjs.com and was putting myself in the shoes of someone brand new to Ember or maybe has done one of the tutorials but had...