Hi ,
How could i set parentheses for negatives using boundcolumns without currency symbol something like this
(1,980.70)
actually i have this dataformatstring , and its cool 'cause completes the decimal position with #.00 always
wih this code and setting the dataformatstring={"0:C"} parentheses works but whit the currency symbol
i hope you can help me, thanks
Regards
Gino
How could i set parentheses for negatives using boundcolumns without currency symbol something like this
(1,980.70)
actually i have this dataformatstring , and its cool 'cause completes the decimal position with #.00 always
| <telerik:GridBoundColumn DataField="Noviembre" Aggregate="Sum" HeaderStyle-HorizontalAlign="Right" DataFormatString="{0:N2}" DataType="System.Decimal" |
| FooterAggregateFormatString="{0:N2}" FooterStyle-Font-Bold="true"> |
| <HeaderStyle HorizontalAlign="Right" /> |
| <ItemStyle HorizontalAlign="Right" /> |
| <FooterStyle HorizontalAlign="Right" /> |
| </telerik:GridBoundColumn> |
| CultureInfo ci = new CultureInfo("es-PE"); |
| ci.NumberFormat.CurrencyNegativePattern = 14; |
| System.Threading.Thread.CurrentThread.CurrentCulture = ci; |
i hope you can help me, thanks
Regards
Gino