Hello,
I have a GridNumericColumnEditor wich works fine with positive numbers ,but when i insert a negative number it automaticly puts the minus sign
to the right of the number.
for example i get 33- insted of -33.
what shuld i do to get the minus sign to the left of the number.
I tried to work with the NumberFormat-NegativePattern property and set it to "-n" but it was not worked.
Here is my decleration to my GridNumericColumnEditor
<telerik:GridNumericColumnEditor runat="server" ID="VALUEEditor">
<NumericTextBox runat="server" ID="txtBox1" NumberFormat-DecimalDigits="7" EnabledStyle-Width="22" EnabledStyle-HorizontalAlign="Left" MaxLength="16">
</NumericTextBox>
</telerik:GridNumericColumnEditor>
thank,
Gerry