Hi,

i have a template Column in the gridpanel i want the number Format to be 0.00 how can i achive that.
I need the format 0.00 to the "Amount" Field

<ext:TemplateColumn DataIndex="" MenuDisabled="true" Header="Amount" Width="60">
                                        <Template ID="Template1" runat="server">
                                            <Html>
                                                <tpl for=".">
                                                    <table style="width:100%">
                                                        <tr>
                                                            <td align="left">
                                                                <span style="text-align:left">{DisplaySymbol}</span>
                                                            </td>
                                                            <td align="right">
                                                                <span style="text-align:right">{Amount}</span>
                                                            </td>
                                                        </tr>
                                                    </table>
                                                </tpl>
                                            </Html>
                                        </Template>

                                    </ext:TemplateColumn>
Thanks in Advance !!