I'm trying to format a column as a nice looking phone number rather than the integer... I'm not getting anywhere with the code I have below.
Format="(###) ###-####">
<Header Caption="Number">
<RowLayoutColumnInfo OriginX="3" />
</Header>
<Footer>
</Footer>
</igtbl:UltraGridColumn>
Hello,
The property Format of UltraGridColumn apply only for numbers. Please make sure your type in database is number. For code below the Format property apply normally:
<Columns>
<igtbl:UltraGridColumn Key="Numbers" IsBound="True" BaseColumnName="Numbers" DataType="System.Int32" Format="(###)-###-####">
<Header Caption="Numbers">
</Columns>
Hope this helps.