{{ multipleSelection | json }}
+{{ multipleSelection }}
```html - this.handleCellMouseEnter($event, row) }
+ on-mouseleave={ this.handleCellMouseLeave }>
+ {
+ column.template
+ ? column.template.call(this._renderProxy, h, { row, column, $index })
+ : { this.$getPropertyText(row, column.property, column.id) }
+ }
+ |
+ ).concat(this.fixed ? : '') + } + |
- |
- - |
this.handleMouseMove($event, column) }
+ on-mouseout={ this.handleMouseOut }
+ on-mousedown={ ($event) => this.handleMouseDown($event, column) }
+ on-click={ ($event) => this.handleHeaderClick($event, column) }
+ class={ [column.id, column.direction] }>
+ {
+ [
+ column.headerTemplate
+ ? column.headerTemplate.call(this._renderProxy, h)
+ : { column.label } ,
+ column.sortable
+ ?
+
+
+
+ : ''
+ ]
+ }
+ |
+ ).concat() + } + |
---|
-
- |
- - |
---|