|
Title: datagrid component not find nowrap attribute Post by: fengdie on September 25, 2018, 12:01:26 AM i want to display the data in a row,in vue version ,datagrid component don't find 'nowrap' attribute
Title: Re: datagrid component not find nowrap attribute Post by: stworthy on September 25, 2018, 01:35:03 AM Custom template to add any styles for the cell.
Code: <GridColumn ... <template slot="cell" slot-scope="{row}"> <div style="white-space:normal"> {{row.name}} </div> </template> </GridColumn> |