File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -242,7 +242,17 @@ Bound columns render the name of the field or their `Title` in their header. Thr
242242 <GridColumn Field="@(nameof(SampleData.ID))" Title="This title will not be rendered">
243243 <HeaderTemplate>
244244 <div style="text-align:center">Id</div>
245- @* this is a block element and it will push the sorting indicator, keep this in mind *@
245+ @* this is a block element and it will push the sorting indicator, keep this in mind
246+ A rule like this one can move the sort indicator out of the static order of the elements
247+ <style>
248+ .k-grid th.k-header .k-icon.k-i-sort-asc-sm,
249+ .k-grid th.k-header .k-icon.k-i-sort-desc-sm {
250+ position: absolute;
251+ right: 0;
252+ top: 8px;
253+ }
254+ </style>
255+ *@
246256 </HeaderTemplate>
247257 </GridColumn>
248258 <GridColumn Field="@(nameof(SampleData.Name))">
You can’t perform that action at this time.
0 commit comments