EasyUI Forum

General Category => EasyUI for jQuery => Topic started by: roberto on January 04, 2016, 10:05:54 PM



Title: datagrid, sort, icon
Post by: roberto on January 04, 2016, 10:05:54 PM
Hi,
Is there a way to remove the sort icon from the column header?
I want to use onBeforeSortColumn to provide my own handler with more options.
Tks,


Title: Re: datagrid, sort, icon
Post by: stworthy on January 04, 2016, 11:31:52 PM
Please add the following CSS style code to hide the sort icon.
Code:
<style>
    .datagrid-sort .datagrid-sort-icon{
        display: none;
    }
</style>


Title: Re: datagrid, sort, icon
Post by: roberto on January 05, 2016, 10:44:57 AM
thank you