Let's have the following pseudo-code:
<telerik:RadGrid>
<Columns>
<telerik:GridBoundColumn DataField="SomeInt32Column" />
</Columns>
</telerik:RadGrid>
The default behaviour is:
if null - show empty string
else - show number
What i would like to get is:
if null or zero - show empty string
else - show number
I was trying to accomplish it with DataFormatString, but without success so far. Is there a silmple way to do this?
<telerik:RadGrid>
<Columns>
<telerik:GridBoundColumn DataField="SomeInt32Column" />
</Columns>
</telerik:RadGrid>
The default behaviour is:
if null - show empty string
else - show number
What i would like to get is:
if null or zero - show empty string
else - show number
I was trying to accomplish it with DataFormatString, but without success so far. Is there a silmple way to do this?