Hello.
I would like to know how to configure the spinner's step value properly in a GridView. I need the spinner to move the values by 0.01 instead of 1. The demo application and a forum search didn't solve the problem.
Closest I have come to is this code, but it doesn't work:
Thanks
Philippe
I would like to know how to configure the spinner's step value properly in a GridView. I need the spinner to move the values by 0.01 instead of 1. The demo application and a forum search didn't solve the problem.
Closest I have come to is this code, but it doesn't work:
private
void
radGridViewBase_CellBeginEdit(
object
sender, GridViewCellCancelEventArgs e)
{
var editor =
this
.radGridViewBase.ActiveEditor
as
GridSpinEditor;
if
(editor !=
null
)
{
editor.Step = 0.01M;
}
}
Thanks
Philippe