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
1070
Progress Bar in column - ultrawebgrid
posted
Private Sub UltraWebGrid1_InitializeRow(ByVal sender As Object, ByVal e As Infragistics.WebUI.UltraWebGrid.RowEventArgs) Handles UltraWebGrid1.InitializeRow
    ' Inject a DIV element inside the progress bar cell, using the value in
    ' the Completed column as the percentage width of the element
    e.Row.Cells.FromKey("ProgressBar").Value = "<div style='BACKGROUND-COLOR: olive; width:" + _
        e.Row.Cells.FromKey("Completed").Value.ToString() + "%'></div<"
End Sub