Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
490
sort string column
posted

hi ,

i have ultraGrid ,the grid dataSource binding from list of object like the follwing :

List<Stock>  list = new List<Stock> ;

ultraGrid1.DataSource = list ;

Calss Stock {

 private string Price;

private string Volume}

i did the follwing things in InitializeLayout:

e.Layout.Bands[0].Columns[

"Price"].Style = ColumnStyle.Double;

 e.Layout.Bands[0].Columns["Volume"].Style = ColumnStyle.Double;

--------------------my Quistion is -------------------------

when I click to sort the Volume cloumn or price column the sorting not correct .

Parents Reply Children