or
<fo:table-and-caption>" tag, my table generate.<fo:table-and-caption> <fo:table border="1pt solid black"> <fo:table-column column-width="25mm"/> <fo:table-column column-width="25mm"/> <fo:table-header> <fo:table-row> <fo:table-cell> <fo:block font-weight="bold">title</fo:block> </fo:table-cell> </fo:table-row> </fo:table-header> <fo:table-body> <fo:table-row> <fo:table-cell> <fo:block>val 1</fo:block> </fo:table-cell> </fo:table-row> <fo:table-row> <fo:table-cell> <fo:block>val 2</fo:block> </fo:table-cell> </fo:table-row> </fo:table-body> </fo:table></fo:table-and-caption>function OnRowSelecting(sender, eventArgs) { return eventArgs.set_cancel(!confirm("Confirm navigation?"));}function OnRowSelected(sender, eventArgs) { // Make action...}<telerik:GridTemplateColumn UniqueName="TemplateColumn" SortExpression="Approvals" InitializeTemplatesFirst="false"> <HeaderTemplate> <table id="tblApproval" cellspacing="0" style="width:100px;" class="myTable"> <tr> <td colspan="3" align="center"> Approved By</td> </tr> <tr> <td style="width: 33%"> <asp:LinkButton CssClass="Button" ID="btnEmployee" Text="Emp." ToolTip="Sort by Employee Approval" CommandName='Sort' CommandArgument='EmployeeApproved' runat="server" /></td> <td style="width: 34%"> <asp:LinkButton CssClass="Button" ID="btnClient" Text="Client" ToolTip="Sort by Client Approval" CommandName='Sort' CommandArgument='ClientApproved' runat="server" /></td> <td style="width: 33%"> <asp:LinkButton CssClass="Button" ID="btnPayroll" Text="Acct." ToolTip="Sort by Accounting Approval" CommandName='Sort' CommandArgument='PayrollApproved' runat="server" /></td> </tr> </table> </HeaderTemplate> <ItemTemplate> <table cellspacing="0" width="100%" class="myTable"> <tr> <td style="width: 33%"> <%# ((bool)Eval("EmployeeApproved") == true) ? "Yes" : "No"%> </td> <td style="width: 34%"> <%# ((bool)Eval("ClientApproved") == true) ? "Yes" : "No"%> </td> <td style="width: 33%"> <%# ((bool)Eval("PayrollApproved") == true) ? "Yes" : "No"%> </td> </tr> </table> </ItemTemplate> <ItemStyle HorizontalAlign="Center" /> </telerik:GridTemplateColumn>