This is a migrated thread and some comments may be shown as answers.

Resize RadGrid to window height via javascript

7 Answers 882 Views
Grid
This is a migrated thread and some comments may be shown as answers.
LiZ0r
Top achievements
Rank 1
LiZ0r asked on 14 Jul 2009, 06:03 AM
Hi!

Can somebody help me!
I have webpage with three nested radgrids in one radGrid, I want to select the second nested radgrid out of the three and make the height the same as the window height, via javascript. Is this possible?
I've tried to put something together but it doens't seem to be working.
My code is attached, hope someone can help me!

Thanks and regards,
LiZ0r

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="TEST_ResultsALL.aspx.cs" 
    Inherits="TEST_ResultsALL" %> 
 
<%@ Register Assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" 
    Namespace="System.Web.UI" TagPrefix="asp" %> 
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %> 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml">  
<head id="Head1" runat="server">  
    <title>AIRLINE INCENTIVE TARGET TRACKING - ALL AIRLINES</title> 
    <link href='https://enett99.com/Travel/Styles/CTP.asp' type="text/css" rel="stylesheet">  
    <%--    <LINK href='<%=System.Configuration.ConfigurationSettings.AppSettings["Styles"] + Request.Cookies["Brand"].Value%>.asp' type=text/css rel=stylesheet>--%> 
    <telerik:RadCodeBlock ID="RadCodeBlock1" runat="server">  
 
        <script type="text/javascript">  
            function ResizeGrid()  
            {  
                var winWidth, winHeight, d = document;  
                var radGrid0 = $find('<%= RadGrid0.ClientID %>'); //outer RadGrid  
                var radGrid1 = $telerik.findControl(radGrid0.get_element(), "RadGrid2"); //get the RadGrid2 client object  
                  
                if (typeof window.innerWidth != 'undefined')  
                {  
                    winWidth = window.innerWidth;  
                    winHeight = window.innerHeight;  
                }  
                else if (d.documentElement && typeof d.documentElement.clientWidth != 'undefined' && d.documentElement.clientWidth != 0)  
                {  
                    winWidth = d.documentElement.clientWidth;  
                    winHeight = d.documentElement.clientHeight;  
                }  
                else if (d.body && typeof d.body.clientWidth != 'undefined')  
                {  
                    winWidth = d.body.clientWidth;  
                    winHeight = d.body.clientHeight;  
                }  
 
                if (winHeight > 800)  
                    radGrid1.set Height(winHeight - 265);  
        else  
                    radGrid1.set Height(winHeight - 20);  
            }  
 
 
            //function findGrid()  
            //{  
            //    var radGrid0 = $find('<%= RadGrid0.ClientID %>'); //outer RadGrid  
            //    var radGrid1 = $telerik.findControl(radGrid0.get_element(), "RadGrid1"); //get the RadGrid1 client object  
            //    alert("RadGrid1 MasterTableView Items count = " + radGrid1.get_masterTableView().get_dataItems().length); //test  
            //}  
        </script> 
 
    </telerik:RadCodeBlock> 
</head> 
<body> 
    <form id="form1" runat="server">  
    <div style="overflow-x: hidden">  
        <table id="Table1" cellspacing="1" cellpadding="1" width="100%" border="0">  
            <tr> 
                <td align="left">  
                    <asp:Label ID="lblReportHeading" runat="server" CssClass="Heading">AIRLINES INCENTIVE TARGET TRACKING (ALL AIRLINES)</asp:Label> 
                </td> 
            </tr> 
            <tr> 
                <td align="left">  
                    <hr size="1" align="left" style="width: 100%">  
                </td> 
            </tr> 
        </table> 
        <asp:Label ID="lblData" runat="server" CssClass="Heading">NOTE: Data available for selection between </asp:Label><br /> 
        <br /> 
        <asp:ScriptManager ID="ScriptManager1" runat="server" /> 
        <asp:Button ID="Button1" runat="server" Text="Export" OnClick="Button1_Click" /> 
        <asp:Button ID="Button2" runat="server" Text="PDF" OnClick="Button2_Click" /> 
        //<input type="button" value="Find RadGrid1 w/JS" onclick="findGrid()" /> 
        <telerik:RadGrid ID="RadGrid0" runat="server" Skin="Default" ShowHeader="false" OnNeedDataSource="RadGrid0_NeedDataSource" 
            BorderStyle="None" Width="450px">  
            <MasterTableView> 
                <ItemTemplate> 
                    <telerik:RadGrid ID="RadGrid1" runat="server" OnNeedDataSource="RadGrid1_NeedDataSource" 
                        Skin="Vista" Width="450px">  
                        <MasterTableView AutoGenerateColumns="false">  
                            <Columns> 
                                <telerik:GridBoundColumn HeaderText="Filters" UniqueName="Filters" DataField="Filters" /> 
                                <telerik:GridBoundColumn HeaderText="" UniqueName="MoreFilters" DataField="MoreFilters" /> 
                            </Columns> 
                        </MasterTableView> 
                    </telerik:RadGrid> 
                    <br /> 
                    <br /> 
                    <telerik:RadGrid ID="RadGrid2" runat="server" OnNeedDataSource="RadGrid2_NeedDataSource" 
                        Skin="Vista" Width="1093px">  
                        <MasterTableView AutoGenerateColumns="false" Width="1000px">  
                            <Columns> 
                                <telerik:GridTemplateColumn HeaderText="Airline Name" UniqueName="AirlineName" FooterText="Total">  
                                    <%--                             <ItemTemplate> 
                                    <asp:HyperLink ID="HyperLink1" runat="server" NavigateUrl='<%# "~/RevNett_Report_TicketedRevenue_Detailed.aspx?" + Request.QueryString + "&AL2=" + DataBinder.Eval(Container.DataItem,"Airline") %>' Text='<%# DataBinder.Eval(Container.DataItem,"AirlineName") %>' /> 
                                </ItemTemplate>--%> 
                                    <FooterStyle HorizontalAlign="Left" Width="150px" /> 
                                    <HeaderStyle HorizontalAlign="Left" Width="150px" /> 
                                    <ItemStyle HorizontalAlign="Left" Width="150px" /> 
                                </telerik:GridTemplateColumn> 
                                <telerik:GridBoundColumn DataField="AirlineName" Display="False" HeaderText="Airline Name" 
                                    UniqueName="AirlineNameForExport" FooterText="Total">  
                                </telerik:GridBoundColumn> 
                                <telerik:GridBoundColumn DataField="Airline" HeaderText="Code" UniqueName="column">  
                                    <FooterStyle HorizontalAlign="Right" Width="40px" /> 
                                    <HeaderStyle HorizontalAlign="Right" Width="40px" /> 
                                    <ItemStyle HorizontalAlign="Right" Width="40px" /> 
                                </telerik:GridBoundColumn> 
                                <telerik:GridBoundColumn Aggregate="Sum" DataField="TicketedRevenue" DataFormatString="{0:C0}" 
                                    HeaderText="Ticketed Revenue" UniqueName="column1" DataType="System.Decimal">  
                                    <FooterStyle HorizontalAlign="Right" Width="110px" /> 
                                    <HeaderStyle HorizontalAlign="Right" Width="110px" /> 
                                    <ItemStyle HorizontalAlign="Right" Width="110px" /> 
                                </telerik:GridBoundColumn> 
                                <telerik:GridBoundColumn Aggregate="Sum" DataField="TicketedRevenueLY" DataFormatString="{0:C0}" 
                                    HeaderText="Last Month" UniqueName="column2" DataType="System.Decimal">  
                                    <FooterStyle HorizontalAlign="Right" Width="100px" /> 
                                    <HeaderStyle HorizontalAlign="Right" Width="100px" /> 
                                    <ItemStyle HorizontalAlign="Right" Width="100px" /> 
                                </telerik:GridBoundColumn> 
                                <telerik:GridBoundColumn DataField="TicketedRevenuePcnt" DataFormatString="{0:N2}%" 
                                    HeaderText="% change" UniqueName="column3" DataType="System.Decimal">  
                                    <FooterStyle HorizontalAlign="Right" Width="70px" /> 
                                    <HeaderStyle HorizontalAlign="Right" Width="70px" /> 
                                    <ItemStyle HorizontalAlign="Right" Width="70px" /> 
                                </telerik:GridBoundColumn> 
                                <telerik:GridBoundColumn Aggregate="Sum" DataField="TicketedRevenueFYDate" DataFormatString="{0:C0}" 
                                    HeaderText="FY YTD" UniqueName="column4" DataType="System.Decimal">  
                                    <FooterStyle HorizontalAlign="Right" Width="100px" /> 
                                    <HeaderStyle HorizontalAlign="Right" Width="100px" /> 
                                    <ItemStyle HorizontalAlign="Right" Width="100px" /> 
                                </telerik:GridBoundColumn> 
                                <telerik:GridBoundColumn Aggregate="Sum" DataField="TicketedRevenueLFYDate" DataFormatString="{0:C0}" 
                                    HeaderText="Last Year" UniqueName="column5" DataType="System.Decimal">  
                                    <FooterStyle HorizontalAlign="Right" Width="100px" /> 
                                    <HeaderStyle HorizontalAlign="Right" Width="100px" /> 
                                    <ItemStyle HorizontalAlign="Right" Width="100px" /> 
                                </telerik:GridBoundColumn> 
                                <telerik:GridBoundColumn DataField="TicketedRevenueFYPcnt" DataFormatString="{0:N2}%" 
                                    HeaderText="% change" UniqueName="column6" DataType="System.Decimal">  
                                    <FooterStyle HorizontalAlign="Right" Width="70px" /> 
                                    <HeaderStyle HorizontalAlign="Right" Width="70px" /> 
                                    <ItemStyle HorizontalAlign="Right" Width="70px" /> 
                                </telerik:GridBoundColumn> 
                                <telerik:GridBoundColumn DataField="MarketSharePcnt" DataFormatString="{0:N2}%" HeaderText="Market Share" 
                                    UniqueName="column7" DataType="System.Decimal">  
                                    <FooterStyle HorizontalAlign="Right" Width="90px" /> 
                                    <HeaderStyle HorizontalAlign="Right" Width="90px" /> 
                                    <ItemStyle HorizontalAlign="Right" Width="90px" /> 
                                </telerik:GridBoundColumn> 
                                <telerik:GridBoundColumn DataField="MarketSharePcntChange" DataFormatString="{0:N2}%" 
                                    HeaderText="% change" UniqueName="column8" DataType="System.Decimal">  
                                    <FooterStyle HorizontalAlign="Right" Width="70px" /> 
                                    <HeaderStyle HorizontalAlign="Right" Width="70px" /> 
                                    <ItemStyle HorizontalAlign="Right" Width="70px" /> 
                                </telerik:GridBoundColumn> 
                                <telerik:GridBoundColumn Aggregate="Sum" DataField="IncentiveTarget1" DataFormatString="{0:C0}" 
                                    HeaderText="1st Tier" UniqueName="column9" DataType="System.Decimal">  
                                    <FooterStyle HorizontalAlign="Right" Width="80px" /> 
                                    <HeaderStyle HorizontalAlign="Right" Width="80px" /> 
                                    <ItemStyle HorizontalAlign="Right" Width="80px" /> 
                                </telerik:GridBoundColumn> 
                                <telerik:GridBoundColumn DataField="IncentiveTargetPcnt1" DataFormatString="{0:N2}%" 
                                    HeaderText="% achieved" UniqueName="column10" DataType="System.Decimal">  
                                    <FooterStyle HorizontalAlign="Right" Width="70px" /> 
                                    <HeaderStyle HorizontalAlign="Right" Width="70px" /> 
                                    <ItemStyle HorizontalAlign="Right" Width="70px" /> 
                                </telerik:GridBoundColumn> 
                                <telerik:GridBoundColumn Aggregate="Sum" DataField="IncentiveTarget2" DataFormatString="{0:C0}" 
                                    HeaderText="2nd Tier" UniqueName="column11" DataType="System.Decimal">  
                                    <FooterStyle HorizontalAlign="Right" Width="80px" /> 
                                    <HeaderStyle HorizontalAlign="Right" Width="80px" /> 
                                    <ItemStyle HorizontalAlign="Right" Width="80px" /> 
                                </telerik:GridBoundColumn> 
                                <telerik:GridBoundColumn DataField="IncentiveTargetPcnt2" DataFormatString="{0:N2}%" 
                                    HeaderText="% achieved" UniqueName="column12" DataType="System.Decimal">  
                                    <FooterStyle HorizontalAlign="Right" Width="70px" /> 
                                    <HeaderStyle HorizontalAlign="Right" Width="70px" /> 
                                    <ItemStyle HorizontalAlign="Right" Width="70px" /> 
                                </telerik:GridBoundColumn> 
                                <telerik:GridBoundColumn Aggregate="Sum" DataField="IncentiveTarget3" DataFormatString="{0:C0}" 
                                    HeaderText="3rd Tier" UniqueName="column13" DataType="System.Decimal">  
                                    <FooterStyle HorizontalAlign="Right" Width="80px" /> 
                                    <HeaderStyle HorizontalAlign="Right" Width="80px" /> 
                                    <ItemStyle HorizontalAlign="Right" Width="80px" /> 
                                </telerik:GridBoundColumn> 
                                <telerik:GridBoundColumn DataField="IncentiveTargetPcnt3" DataFormatString="{0:N2}%" 
                                    HeaderText="% achieved" UniqueName="column14" DataType="System.Decimal">  
                                    <FooterStyle HorizontalAlign="Right" Width="70px" /> 
                                    <HeaderStyle HorizontalAlign="Right" Width="70px" /> 
                                    <ItemStyle HorizontalAlign="Right" Width="70px" /> 
                                </telerik:GridBoundColumn> 
                                <telerik:GridBoundColumn Aggregate="Sum" DataField="IncentiveTarget4" DataFormatString="{0:C0}" 
                                    HeaderText="4th Tier" UniqueName="column15" DataType="System.Decimal">  
                                    <FooterStyle HorizontalAlign="Right" Width="80px" /> 
                                    <HeaderStyle HorizontalAlign="Right" Width="80px" /> 
                                    <ItemStyle HorizontalAlign="Right" Width="80px" /> 
                                </telerik:GridBoundColumn> 
                                <telerik:GridBoundColumn DataField="IncentiveTargetPcnt4" DataFormatString="{0:N2}%" 
                                    HeaderText="% achieved" UniqueName="column16" DataType="System.Decimal">  
                                    <FooterStyle HorizontalAlign="Right" Width="70px" /> 
                                    <HeaderStyle HorizontalAlign="Right" Width="70px" /> 
                                    <ItemStyle HorizontalAlign="Right" Width="70px" /> 
                                </telerik:GridBoundColumn> 
                                <telerik:GridBoundColumn Aggregate="Sum" DataField="IncentiveTarget5" DataFormatString="{0:C0}" 
                                    HeaderText="5th Tier" UniqueName="column17" DataType="System.Decimal">  
                                    <FooterStyle HorizontalAlign="Right" Width="80px" /> 
                                    <HeaderStyle HorizontalAlign="Right" Width="80px" /> 
                                    <ItemStyle HorizontalAlign="Right" Width="80px" /> 
                                </telerik:GridBoundColumn> 
                                <telerik:GridBoundColumn DataField="IncentiveTargetPcnt5" DataFormatString="{0:N2}%" 
                                    HeaderText="% achieved" UniqueName="column18" DataType="System.Decimal">  
                                    <FooterStyle HorizontalAlign="Right" Width="70px" /> 
                                    <HeaderStyle HorizontalAlign="Right" Width="70px" /> 
                                    <ItemStyle HorizontalAlign="Right" Width="70px" /> 
                                </telerik:GridBoundColumn> 
                                <telerik:GridBoundColumn Aggregate="Sum" DataField="IncentiveTarget6" DataFormatString="{0:C0}" 
                                    HeaderText="6th Tier" UniqueName="column19" DataType="System.Decimal">  
                                    <FooterStyle HorizontalAlign="Right" Width="80px" /> 
                                    <HeaderStyle HorizontalAlign="Right" Width="80px" /> 
                                    <ItemStyle HorizontalAlign="Right" Width="80px" /> 
                                </telerik:GridBoundColumn> 
                                <telerik:GridBoundColumn DataField="IncentiveTargetPcnt6" DataFormatString="{0:N2}%" 
                                    HeaderText="% achieved" UniqueName="column20" DataType="System.Decimal">  
                                    <FooterStyle HorizontalAlign="Right" Width="70px" /> 
                                    <HeaderStyle HorizontalAlign="Right" Width="70px" /> 
                                    <ItemStyle HorizontalAlign="Right" Width="70px" /> 
                                </telerik:GridBoundColumn> 
                            </Columns> 
                        </MasterTableView> 
                        <ClientSettings> 
                            <Scrolling AllowScroll="True" UseStaticHeaders="True" /> 
                        </ClientSettings> 
                    </telerik:RadGrid> 
                    <br /> 
                    <br /> 
                    <telerik:RadGrid ID="RadGrid3" runat="server" OnNeedDataSource="RadGrid3_NeedDataSource" 
                        Skin="Vista" Width="450px">  
                        <MasterTableView AutoGenerateColumns="false">  
                            <Columns> 
                                <telerik:GridBoundColumn HeaderText="Filters" UniqueName="Filters" DataField="Filters" /> 
                                <telerik:GridBoundColumn HeaderText="" UniqueName="MoreFilters" DataField="MoreFilters" /> 
                            </Columns> 
                        </MasterTableView> 
                    </telerik:RadGrid> 
                </ItemTemplate> 
            </MasterTableView> 
        </telerik:RadGrid> 
    </div> 
    </form> 
</body> 
</html> 
 

7 Answers, 1 is accepted

Sort by
0
Dimo
Telerik team
answered on 14 Jul 2009, 10:55 AM
Hi LiZ0r,

Please inspect the following example :

http://www.telerik.com/community/code-library/aspnet-ajax/grid/how-to-set-radgrid-height-client-side-with-javascript.aspx

Regards,
Dimo
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
0
LiZ0r
Top achievements
Rank 1
answered on 15 Jul 2009, 12:28 AM
Hi Dimo!

Thanks for the quick response.
Just a query though, will this code still apply to nested radGrids?

*LiZ0r
0
Dimo
Telerik team
answered on 15 Jul 2009, 12:04 PM
Hi LiZ0r,

Nested RadGrids are separate RadGrid controls. We are not talking about hierarchy and detail tables here, right?

So from this point of view, the setting of height of a RadGrid control follows the same patterns, no matter whether the control is placed in another RadGrid or not.

Best wishes,
Dimo
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
0
LiZ0r
Top achievements
Rank 1
answered on 16 Jul 2009, 05:12 AM
Hi Dimo,

I have tried to use the example and it's just not working for me.
        <script type="text/javascript">  
            function ResizeGrid()  
            {  
                var winWidth, winHeight, d = document;  
                  
                var radGrid0 = $find('<%= RadGrid0.ClientID %>'); //outer RadGrid  
                var radGrid1 = $telerik.findControl(radGrid0.get_element(), "RadGrid2"); //get the RadGrid2 client object  
                  
                if (typeof window.innerWidth != 'undefined')  
                {  
                    winWidth = window.innerWidth;  
                    winHeight = window.innerHeight;  
                }  
                else if (d.documentElement && typeof d.documentElement.clientWidth != 'undefined' && d.documentElement.clientWidth != 0)  
                {  
                    winWidth = d.documentElement.clientWidth;  
                    winHeight = d.documentElement.clientHeight;  
                }  
                else if (d.body && typeof d.body.clientWidth != 'undefined')  
                {  
                    winWidth = d.body.clientWidth;  
                    winHeight = d.body.clientHeight;  
                }                 
                  
                if (winHeight > 800)  
                {  
                    radGrid1.style.height = winHeight - 265 + "px";  
                    grid.repaint();  
                }  
                else  
                {  
                    radGrid1.style.height = winHeight - 20 + "px";  
                    grid.repaint();  
                }  
            }  
        </script> 

The above code is what I've tried to do and in the body I have called the function when the window is resized.
Can you tell me what I'm doing wrong coz it doesn't seem to be working!

Thanks and regards,
Lily
0
Accepted
Dimo
Telerik team
answered on 16 Jul 2009, 01:52 PM
Hello LiZ0r,

In cases like yours I strongly recommend turning on the browser's Javascript error alerts and inspecting the examples provided by Telerik once again.

The browser should have triggered a Javascript error, which tells that the grid object does not have a style property. This is because the height style should be set on the RadGrid div element (grid.get_element().style), and not on the RadGrid client object (grid.style).

Here is a simplified example, which works as expected:

<%@ Page Language="C#" %> 
<%@ Import Namespace="System.Data" %> 
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %> 
 
<script runat="server"
 
protected void RadGrid_NeedDataSource(object sender, GridNeedDataSourceEventArgs e) 
    DataTable dt = new DataTable(); 
    DataRow dr; 
    int colsNum = 3
    int rowsNum = 20
    string colName = "Column"
 
    for (int j = 1; j <= colsNum; j++) 
    { 
        dt.Columns.Add(String.Format("{0}{1}", colName, j)); 
    } 
 
    for (int i = 1; i <= rowsNum; i++) 
    { 
        dr = dt.NewRow(); 
 
        for (int k = 1; k <= colsNum; k++) 
        { 
            dr[String.Format("{0}{1}", colName, k)] = String.Format("{0}{1} Row{2}", colName, k, i); 
        } 
        dt.Rows.Add(dr); 
    } 
 
    (sender as RadGrid).DataSource = dt
 
</script> 
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
 
<html xmlns="http://www.w3.org/1999/xhtml"
<head runat="server"
<meta http-equiv="content-type" content="text/html; charset=utf-8" /> 
<title>RadControls for ASP.NET AJAX</title> 
<style type="text/css"
 
html{overflow:hidden} 
html,body,form{margin:0;padding:0;height:100%} 
 
</style> 
</head> 
<body> 
<form id="form1" runat="server"
<asp:ScriptManager ID="ScriptManager1" runat="server" /> 
 
<script type="text/javascript"
 
window.onresize = ResizeGrid
Sys.Application.add_load(ResizeGrid); 
 
function ResizeGrid() 
    var radGrid0 = $find('<%= RadGrid0.ClientID %>'); //outer RadGrid 
    var radGrid2 = $telerik.findControl(radGrid0.get_element(), "RadGrid2"); //get the RadGrid2 client object 
    if (document.documentElement.offsetHeight > 290) 
    { 
        radGrid2.get_element().style.height = document.documentElement.offsetHeight - 280 + "px";   
        radGrid2.repaint(); 
    } 
 
</script> 
 
<telerik:RadGrid 
    ID="RadGrid0" 
    runat="server" 
    Height="100%" 
    style="border:0;outline:none" 
    AllowPaging="true" 
    PageSize="1" 
    OnNeedDataSource="RadGrid_NeedDataSource"
    <MasterTableView TableLayout="Fixed"
        <ItemTemplate> 
            <div style="height:200px;border:1px solid blue"
                This is some 200px vertical space inside the outer RadGrid's ItemTemplate. 
            </div> 
            <telerik:RadGrid 
                ID="RadGrid2" 
                runat="server" 
                OnNeedDataSource="RadGrid_NeedDataSource"
                <ClientSettings> 
                    <Scrolling AllowScroll="true" UseStaticHeaders="true" /> 
                </ClientSettings> 
            </telerik:RadGrid> 
        </ItemTemplate> 
    </MasterTableView> 
</telerik:RadGrid> 
 
</form> 
</body> 
</html> 


Best wishes,
Dimo
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
0
LiZ0r
Top achievements
Rank 1
answered on 17 Jul 2009, 06:00 AM
This has worked a treat!
Thank you!

*LiZ0r
0
Kaushal
Top achievements
Rank 1
answered on 12 May 2011, 10:11 AM
Hi LiZ0r,

Thanks to post this question. As I am also able to resolve my problem here through it. Thanks to telerik to give perfact answer here.

Tags
Grid
Asked by
LiZ0r
Top achievements
Rank 1
Answers by
Dimo
Telerik team
LiZ0r
Top achievements
Rank 1
Kaushal
Top achievements
Rank 1
Share this question
or