I seem unable to locate the CSS class I need to use for setting column separator width. I have tried, but no luck.
Thought maybe .k-separator but that didn't seem to do anything. Dev mode inspection via Edge didn't reveal anything I could use/find.
If I specify a column like so:
<GridColumn Title="Effective">
<Columns>
<GridColumn Field=@nameof(RateDispatchItem.EffectiveDate) Title="Current" Editable="false" TextAlign="ColumnTextAlign.Right" DisplayFormat="{0:MM/dd/yyyy}" Width="7rem" />
<GridColumn Field=@nameof(RateDispatchItem.NextEffectiveDate) Title="Next" Editable="true" TextAlign="ColumnTextAlign.Right" DisplayFormat="{0:MM/dd/yyyy}" Width="7rem" />
</Columns>
</GridColumn>
I'll get column separators for entire grid (which sorta makes sense):
BUT, I can't seem to make column separators work for single titles like:
I'd like to set the column header separator to a 1px and apply system wide (just the header, no the grid content).
Hints?
