Hi All,
I have make a grid with some template column. I am applying aggregate on it. It is successfully applied. But footertext handling is not proper. I want to get text value for footer from resource file. But FooterText can not do. So how we can handle footer text in footer template
<rad:GridTemplateColumn DataField="NoOfYear" UniqueName="NoOfDays" FooterText="Can not use for multiple langages " Aggregate="Sum" GroupByExpression="NoOfDays Group By NoOfDays">
<HeaderTemplate>
<asp:Label ID="NoOfDaysHeaderLabel" runat="server" Text="code for getting text From Resouce file"/>
</HeaderTemplate>
<ItemTemplate>
<%#DataBinder.Eval(Container, "DataItem.NUMBER_OF_DAYS")%>
</ItemTemplate>
<ItemStyle Width="3%" />
</rad:GridTemplateColumn>
I want to handle footertext there
<FooterTemplate>
<asp:Label ID="NoOfDaysFooterLabel" runat="server" Text="code for getting text From Resouce file"/>
</FooterTemplate>
Kindly provide solution.
I have make a grid with some template column. I am applying aggregate on it. It is successfully applied. But footertext handling is not proper. I want to get text value for footer from resource file. But FooterText can not do. So how we can handle footer text in footer template
<rad:GridTemplateColumn DataField="NoOfYear" UniqueName="NoOfDays" FooterText="Can not use for multiple langages " Aggregate="Sum" GroupByExpression="NoOfDays Group By NoOfDays">
<HeaderTemplate>
<asp:Label ID="NoOfDaysHeaderLabel" runat="server" Text="code for getting text From Resouce file"/>
</HeaderTemplate>
<ItemTemplate>
<%#DataBinder.Eval(Container, "DataItem.NUMBER_OF_DAYS")%>
</ItemTemplate>
<ItemStyle Width="3%" />
</rad:GridTemplateColumn>
I want to handle footertext there
<FooterTemplate>
<asp:Label ID="NoOfDaysFooterLabel" runat="server" Text="code for getting text From Resouce file"/>
</FooterTemplate>
Kindly provide solution.