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
115
How to sort a image column in UltraWebGrid
posted

Hi All,

I have a UltraWebGrid with values coming from database. Currently am setting one column of UltraWebGrid as image based on one column value

AddEditDataGrid_InitializeRow

{

If (e.Data("isvalue") = "1") Then
                e.Row.Cells(3).Text = "<center><img src='../Images/isvalue.png'></center>"
            Else
                e.Row.Cells(3).Text = ""

}

 <DisplayLayout AllowAddNewDefault="Yes" AllowColSizingDefault="Free" AllowDeleteDefault="Yes"
    AllowSortingDefault="OnClient" AllowUpdateDefault="Yes" BorderCollapseDefault="Separate"---

Since its an image column,the sorting is not working.How I can do the sorting for this column?

Regards,

Jeena

Parents Reply Children
No Data