Hello.
I've made a progress bar column like it's explained in your documentation: https://docs.telerik.com/devtools/winforms/controls/gridview/cells/creating-custom-cells
Protected Overrides Sub SetContentCore(ByVal value As Object)
If Me.Value IsNot Nothing AndAlso Me.Value IsNot DBNull.Value Then
Me.radProgressBarElement.Value1 = Convert.ToInt16(Me.Value)
End If
End Sub
how can i set the value2 of the progressbar?
and i'd like could modify the maximum value.
i've found:
protected override void CreateChildElements()
{
base.CreateChildElements();
radProgressBarElement = new RadProgressBarElement();
radProgressBarElement.Minimum = 0;
radProgressBarElement.Maximum = 10;
this.Children.Add(radProgressBarElement);
}
but in this case the maximum it's diferent in each row of the grid (it is defined by an other field -column- )
would be it possible??
thx very mucht