Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
111 views
Hi,
We are using clientside databinding to populate our grids. To avoid "flickering" on load, the grid is bound to an empty datatable on serverside page load. However; when the grid gets databound&repainted on clientside, the rows don't get edit&delete buttons. There is just an empty whitespace where the buttons should be.
Nikolay Rusev
Telerik team
 answered on 30 Jul 2009
6 answers
225 views
Hi,

I'm implementing my own custom RadTreeNode via inheritance. It looks something like this

public class TaggedTreeNode : RadTreeNode
{
    
    public string[] Tags
    {
        get { return (string[])ViewState["tags"] ?? new string[] { }; }
        set { ViewState["tags"] = value; }
    }

}

While I can still utilize this new property on a server side during the rendering, when I place control inside RadAjaxPanel the first ajax postback empties the contents of the property. The thing is that nodes are expanded normally via OnNodeExpand, but when some other control on the RadAjaxPanel fires a postback the information from this property is lost.

How can I create a custom property which will be persistent? It seems that no other property but described in RadTreeNode can be persisted at all during ajax postbacks.



Thank you,
Mark
Mark Kingsley
Top achievements
Rank 1
 answered on 30 Jul 2009
1 answer
102 views
I get a JS error (this._resizeType is null) on attempt to drag the RadWindow, when following conditions are met:
1. It's the Firefox browser (3.0 on my machine)
2. There is a Microsoft map script on the page

The error is somewhere in getCurrentStyle(_a0,"cursor"); call, more specifically - _2a=_27.currentStyle[_28].
I've attached the very simple example to illustrate the problem.

Would you come up with some sort of workaround?
Thanks!!!

<%@ Page Language="C#" AutoEventWireup="true" %> 
 
<%@ Import Namespace="Telerik.Web.UI" %> 
<!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> 
  <script type="text/javascript" src="http://dev.virtualearth.net/mapcontrol/mapcontrol.ashx?v=6"></script> 
</head> 
<body> 
  <form id="form1" runat="server"
  <telerik:RadScriptManager ID="ScriptManager" runat="server" EnablePageMethods="true" 
    LoadScriptsBeforeUI="false" ScriptMode="Release" EnableHandlerDetection="false" 
    OutputCompression="Disabled" EnableScriptCombine="true"
  </telerik:RadScriptManager> 
  <telerik:RadWindowManager ID="WindowManager" runat="server" Skin="Black"
    <Windows> 
      <telerik:RadWindow ID="FW" runat="server" Top="100px" Left="600px" Title="Test window" 
        Width="256px" Height="720px" Visible="true" NavigateUrl="http://www.google.com/" 
        VisibleOnPageLoad="true"
      </telerik:RadWindow> 
    </Windows> 
  </telerik:RadWindowManager> 
  </form> 
</body> 
</html> 

Georgi Tunev
Telerik team
 answered on 30 Jul 2009
1 answer
62 views

http://www.telerik.com/help/aspnet-ajax/telerik.web.ui-telerik.web.ui.radeditor-cssfiles.html
"Gets or sets the list of external CSS files that should be made available in the editor's content area."




The description is wrong since the CssFiles property is readonly.

Lini
Telerik team
 answered on 30 Jul 2009
1 answer
172 views
Hi,

I have a radgrid to which I am trying to create custom filter by using http://www.telerik.com/help/aspnet-ajax/grdcustomfilteroptionswithhandling.html article. I am not able to see onClick event on GridFilterMenu class. When I add onItemClick event, I am getting the following error;

System.ArgumentException: Requested value 'null' was not found.

code:

Default.aspx
<%@ Page Language="C#" AutoEventWireup="true"  CodeFile="Default.aspx.cs" Inherits="_Default" %>
<%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>
<!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">
    <title>Untitled Page</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>

                <asp:ScriptManager ID="scrp" runat="server"></asp:ScriptManager>
    <telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server">
    </telerik:RadAjaxLoadingPanel>
   <telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel2" runat="server">
        <img id="imgid" src="images/loading.gif" alt="Loading" />
    </telerik:RadAjaxLoadingPanel>
    <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server" >
        <AjaxSettings>
           
             <telerik:AjaxSetting AjaxControlID="radioYes">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="radGrid" LoadingPanelID="RadAjaxLoadingPanel1" />
                </UpdatedControls>
            </telerik:AjaxSetting>
              <telerik:AjaxSetting AjaxControlID="radioNo">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="radGrid" LoadingPanelID="RadAjaxLoadingPanel1" />
                </UpdatedControls>
            </telerik:AjaxSetting>
        </AjaxSettings>
    </telerik:RadAjaxManager>
          
               
    
            <telerik:RadGrid ID="radGrid" runat="server" AutoGenerateColumns="true" AllowPaging="true"
                 PageSize="5" EnableAjaxSkinRendering="true" AllowFilteringByColumn="true"
                Skin="Office2007">
                <PagerStyle Mode="NextPrevNumericAndAdvanced" AlwaysVisible="true" />
            </telerik:RadGrid>
    </div>
    </form>
</body>
</html>


Default.aspx.cs

using System;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
using Telerik.Web.UI;

public partial class _Default : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {
            LoadRadGrid();
        }

    }

    protected void Page_Init(object sender, EventArgs e)
    {
        AddCustomGridFilters();
    }

    public void AddCustomGridFilters()
    {
        radGrid.FilterMenu.Items.Clear();
        RadMenuItem[] radMenuItems = new RadMenuItem[7];
        for (int index = 0; index < radMenuItems.Length; index++)
        {
            radMenuItems[index] = new RadMenuItem();
            radGrid.FilterMenu.Items.Add(radMenuItems[index]);
        }
        radMenuItems[0].Text = Constants.EqualTo;
        radMenuItems[1].Text = Constants.StartsWith;
        radMenuItems[2].Text = Constants.EndsWith;
        radMenuItems[3].Text = Constants.LessThan;
        radMenuItems[4].Text = Constants.GreaterThan;
        radMenuItems[5].Text = Constants.Contains;
        radMenuItems[6].Text = Constants.NoFilter;

        (radGrid.FilterMenu as GridFilterMenu).ItemClick += new RadMenuEventHandler(_Default_ItemClick);

    }

    void _Default_ItemClick(object sender, RadMenuEventArgs e)
    {
        //Do something.
    }

   

    private void LoadRadGrid()
    {
        

        this.radGrid.DataSource = GetDataTable();
        this.radGrid.DataBind();
    }

    private DataTable GetDataTable()
    {
        DataTable dt = new DataTable();
        dt.Columns.Add(new DataColumn("ID"));
        dt.Columns.Add(new DataColumn("Name"));
        dt.Columns.Add(new DataColumn("Marks"));

        DataRow dr = dt.NewRow();
        dr["ID"] = 1;
        dr["Name"] = "Mahesh";
        dr["Marks"] = 100;
        dt.Rows.Add(dr);

        dr = dt.NewRow();
        dr["ID"] = 2;
        dr["Name"] = "Rajesh";
        dr["Marks"] = 55;
        dt.Rows.Add(dr);

        dr = dt.NewRow();
        dr["ID"] = 3;
        dr["Name"] = "Kishore";
        dr["Marks"] = 89;
        dt.Rows.Add(dr);

        dr = dt.NewRow();
        dr["ID"] = 4;
        dr["Name"] = "Sasi";
        dr["Marks"] = 44;
        dt.Rows.Add(dr);

        dr = dt.NewRow();
        dr["ID"] = 5;
        dr["Name"] = "Kamesh";
        dr["Marks"] = 78;
        dt.Rows.Add(dr);

        return dt;
    }

    //This class contains all the constants
    public class Constants
    {
        public const string CrtSegment = "crt";
        public const string FleetSegment = "fleet";

        // Numeric And String Constants
        public const string EqualTo = "EqualTo";
        public const string NotEqualTo = "NotEqualTo";
        public const string GreaterThan = "More than";
        public const string LessThan = "Less than";
        public const string GreaterThanOrEqualTo = "GreaterThanOrEqualTo";
        public const string LessThanOrEqualTo = "LessThanOrEqualTo";
        public const string Between = "Between";
        public const string NotBetween = "NotBetween";
        public const string ISNull = "IsNull";
        public const string ISNotNull = "NotIsNull";
        public const string NoFilter = "No filter";

        // String Constants
        public const string Contains = "Contains...";
        public const string DoesNotContain = "DoesNotContain";
        public const string StartsWith = "Starts with...";
        public const string EndsWith = "Ends with...";
        public const string IsEmpty = "IsEmpty";
        public const string IsNotEmpty = "IsNotEmpty";

        //RadContextMenu Constants
        public const string ShowColumn = "Show column";
        public const string HideColumn = "Hide column";
        public const string RestoreAll = "Restore All";

    }

}


Thanks,
Mahesh











Yavor
Telerik team
 answered on 30 Jul 2009
3 answers
168 views
hi..............
  i have face some problem when use the rad ajax manager in my application.
probem is that when some control get trigger upadate control take much more time . in application
suppose on changeindexing of drop down some other drop down is changeing  take more time , but same process or code write separately in application then code execute speedly ?

can any body tell me what problem in my logic



Iana Tsolova
Telerik team
 answered on 30 Jul 2009
1 answer
130 views
Hi,

I've a <Linkbutton> embedded in RAD Grid control. I want to map the eventhandler dynamically. 

Here is my code. What i'm trying to do here opening a pop-up dialog on clicking the link button, but, unfortunately the event for the control is not biding to the control!

protected void grd_ItemDataBound(object sender, Telerik.WebControls.GridItemEventArgs e) 
        { 
            try 
            { 
                if (e.Item is GridDataItem) 
                { 
                    GridDataItem grdItem = (GridDataItem)e.Item; 
 
                    LinkButton lnk1 = e.Item.FindControl("link1"as LinkButton; 
                    Label lbl1 = e.Item.FindControl("label1"as Label; 
                    lnk1.CommandArgument = lbl1.Text; 
                    lnk1.Click += new EventHandler(lnk1_Click); 
                } 
            } 
       } 

       protected void lnk1_Click(object sender, EventArgs e) 
        { 
            try 
            { 
                LinkButton lnkButton = sender as LinkButton; 
                string argument = lnkButton.CommandArgument; 
 
              Page.ClientScript.RegisterClientScriptBlock(string.Empty.GetType(), "showpopup"
                    "OpenPopupPage('lnkbutton');"true); 
            } 
            catch (Exception ex) 
            { 
                lblErrorMessage.Text = ex.Message; 
            } 
        } 
 

Let me know what mistake i am doing here

Thanks in advance
Viswa
Vlad
Telerik team
 answered on 30 Jul 2009
3 answers
127 views
Hi,
Is it possible to use filtering RADGrid in Asp.net MVC inside a radpanel with AJAX. Can I use the same control as ASP.net web form control or there is a separate control for MVC framework.

Thanks in advance
Vlad
Telerik team
 answered on 30 Jul 2009
1 answer
112 views
Hi,
I am creating PIe chart, how can I remove its top, left, rigth, spaces.
Legend show on bottom.

I am sending you design code. please tell me how to remove extra spaces arround the chart. and
<telerik:RadChart ID="chartCaseSummaryProductWise" runat="server" Skin="Office2007" 
        AutoLayout="True" SeriesPalette="customPalette" SeriesOrientation="Vertical" 
        AutoTextWrap="false" AlternateText="status ratio" Height="450px"   
        Width="300px" 
        DefaultType="Pie" PlotArea-Appearance-Border-Visible="false" ChartTitle-Visible="false" 
         PlotArea-DataTable-Appearance-AutoTextWrap="True">  
        <CustomPalettes>  
            <cc1:Palette Name="customPalette">  
                <Items>  
                    <cc1:PaletteItem MainColor="White" SecondColor="LightCoral">  
                    </cc1:PaletteItem>  
                    <cc1:PaletteItem MainColor="White" SecondColor="#666666">  
                    </cc1:PaletteItem>  
                    <cc1:PaletteItem MainColor="White" SecondColor="Lavender">  
                    </cc1:PaletteItem>  
                    <cc1:PaletteItem MainColor="White" SecondColor="LightBlue">  
                    </cc1:PaletteItem>  
                    <cc1:PaletteItem MainColor="White" SecondColor="Red">  
                    </cc1:PaletteItem>  
                    <cc1:PaletteItem MainColor="White" SecondColor="Yellow">  
                    </cc1:PaletteItem>  
                    <cc1:PaletteItem MainColor="White" SecondColor="Violet">  
                    </cc1:PaletteItem>  
                    <cc1:PaletteItem MainColor="White" SecondColor="PaleTurquoise">  
                    </cc1:PaletteItem>  
                    <cc1:PaletteItem MainColor="White" SecondColor="AntiqueWhite">  
                    </cc1:PaletteItem>  
                    <cc1:PaletteItem MainColor="White" SecondColor="#000066">  
                    </cc1:PaletteItem>  
                    <cc1:PaletteItem MainColor="White" SecondColor="Khaki">  
                    </cc1:PaletteItem>  
                    <cc1:PaletteItem MainColor="White" SecondColor="#990099">  
                    </cc1:PaletteItem>  
                    <cc1:PaletteItem MainColor="White" SecondColor="#FFCC66">  
                    </cc1:PaletteItem>  
                    <cc1:PaletteItem MainColor="White" SecondColor="#CCCC00">  
                    </cc1:PaletteItem>  
                    <cc1:PaletteItem MainColor="White" SecondColor="Purple">  
                    </cc1:PaletteItem>  
                    <cc1:PaletteItem MainColor="White" SecondColor="#00FF00">  
                    </cc1:PaletteItem>  
                    <cc1:PaletteItem MainColor="White" SecondColor="Orange">  
                    </cc1:PaletteItem>  
                    <cc1:PaletteItem MainColor="White" SecondColor="DarkSalmon">  
                    </cc1:PaletteItem>  
                    <cc1:PaletteItem MainColor="White" SecondColor="PaleGoldenRod">  
                    </cc1:PaletteItem>  
                    <cc1:PaletteItem MainColor="White" SecondColor="MediumVioletRed">  
                    </cc1:PaletteItem>  
                    <cc1:PaletteItem MainColor="White" SecondColor="FireBrick">  
                    </cc1:PaletteItem>  
                    <cc1:PaletteItem MainColor="White" SecondColor="#CCCCCC">  
                    </cc1:PaletteItem>  
                </Items>  
            </cc1:Palette>  
        </CustomPalettes>  
        <Appearance Border-Visible="false"   
        Dimensions-Margins="0%, 0%, 0px, 0px" 
         Dimensions-Paddings="0px, 0px, 0px, 0px">  
        </Appearance>  
        <PlotArea>  
        <Appearance   Dimensions-Margins="10%, 10%, 10px, 10px" 
         Dimensions-Paddings="10px, 10px, 10px, 10px">  
          
        </Appearance>  
        </PlotArea>  
        <Legend Visible="true" Appearance-Border-Visible="false">  
              
            <Appearance Dimensions-Margins="0%, 0%, 0px, 0px"   
                        Dimensions-Paddings="0px, 0px, 7px, 0px" 
                        Position-AlignedPosition="BottomLeft" 
                        Overflow="Row" 
                        >  
                <ItemTextAppearance TextProperties-Color="Navy">  
                </ItemTextAppearance>  
                <ItemMarkerAppearance Figure="Ractangle" Border-Visible="true" Position-AlignedPosition="TopRight">  
                </ItemMarkerAppearance>  
                <Border Visible="False"></Border>  
            </Appearance>  
        </Legend>  
    </telerik:RadChart>  
 
 
 
 
 
Code :   
 protected void Page_Load(object sender, EventArgs e)  
    {  
        if (!Page.IsPostBack)  
        {  
            BindCaseSummaryProductWise();  
            if (Session["SessionID"] != null)  
                SessionID = Convert.ToInt32(Session["SessionID"]);  
        }         
    }  
 
    private void BindCaseSummaryProductWise()  
    {  
        try 
        {  
            ChartSeries series = new ChartSeries("CaseProductStatus", ChartSeriesType.Pie);  
            series.DataYColumn = "total_cases";  
            series.DataXColumn = "case_product_name";  
 
            series.Appearance.LegendDisplayMode = ChartSeriesLegendDisplayMode.ItemLabels;              
            //series.DefaultLabelValue = "#%";  
            chartCaseSummaryProductWise.ItemDataBound += new EventHandler<ChartItemDataBoundEventArgs>(chartCaseSummaryProductWise_ItemDataBound);  
            chartCaseSummaryProductWise.Series.Add(series);  
 
              
            objDashBoardWS = new DashBoardWS();  
            chartCaseSummaryProductWise.DataSource = objDashBoardWS.Get_CaseSummaryChart_ProductWise(SessionID);  
 
            chartCaseSummaryProductWise.DataBind();  
              
        }  
        catch (Exception ex)  
        {  
            LogMessage(ex, 1);  
            return;  
        }  
    }  
 
    void chartCaseSummaryProductWise_ItemDataBound(object sender, ChartItemDataBoundEventArgs e)  
    {  
        e.SeriesItem.Name = (e.DataItem as DataRowView).Row[0].ToString();  
    }  
 
 
Can we create 3D charts.?

thanks with reagrds
Ves
Telerik team
 answered on 30 Jul 2009
1 answer
70 views
Hi,

I have a page that loads 3 User Controls. All user controls contains a grid + various other controls. I use a RadAjaxManager in the Page that loads the user controls, and I use RadAjaxManagerProxy in all of the user controls. At intial load of the page it does not display anything untill all of the user controls have finished loading. However when I do a search in a grid or any other thing for that specific user control it only does updates around this control. Is there a way to make the main page load one user control at the time?

What I want is for the page to load it's layout quickly, and then do the populating of the grid in the background sorta speak. Is there a way to obtain this functionality?

ASPX page:
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="MyPimsR3Home.aspx.vb" Inherits="MyPimsR3Home" %> 
 
<%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %> 
<%@ Register src="MyResponsibilities.ascx" tagname="MyResponsibilities" tagprefix="uc1" %> 
<%@ Register src="MyActions.ascx" tagname="MyActions" tagprefix="uc2" %> 
<%@ Register src="MyRisks.ascx" tagname="MyRisks" tagprefix="uc3" %> 
 
<!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></title
    <script type="text/javascript" language="javascript" src="Javascript/MyPimsR3Home.js" ></script
    <style type="text/css"
        .gridFrame 
        { 
            border-right:#bbd7fa 1px solid; 
            border-left:#bbd7fa 1px solid; 
            border-bottom: #bbd7fa 1px solid; 
            height: 100%; 
        } 
        .titleBar{ color:#00538f;} 
        .collapseArrows {background: url(images/bullet_arrow_up.png) 1000px 50% no-repeat} 
        .bl {background: url(images/bl.gif) 0 100% no-repeat} 
        .br {background: url(images/br.gif) 100% 100% no-repeat} 
        .tl {background: url(images/tl.gif) 0 0 no-repeat #bbd7fa; cursor:pointer;} 
        .tr {background: url(images/tr.gif) 100% 0 no-repeat} 
    </style> 
</head> 
<body> 
    <form id="form1" runat="server"
    <telerik:RadScriptManager ID="RadScriptManager1" runat="server"
    </telerik:RadScriptManager> 
    <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server" RequestQueueSize="1" EnableAJAX="true"
    </telerik:RadAjaxManager> 
    <table width='1030px' cellspacing='0'
        <tr> 
            <td id="cResponsibilitiesRow" title="Click to hide My Responsibilities" onclick="toggle(this)"
                <div class="tl"><div id="cResponsibilitiesArrow" class="collapseArrows"><div class="tr"
                   <span id="cMyResponsibilitiesLink" class="titleBar"
                    <b>&nbsp;&nbsp;&nbsp;&nbsp;My Responsibilities</b></span
                </div></div></div> 
            </td> 
       </tr> 
       <tr> 
            <td class="gridFrame"
                <table id="cResponsibilitiesTable" width='1030px'
                    <tr> 
                        <td> 
                            <uc1:MyResponsibilities ID="cMyResponsibilities" runat="server" Visible="false" /> 
                        </td> 
                    </tr> 
                </table>                 
            </td> 
        </tr> 
        <tr> 
            <td> 
                &nbsp; 
            </td> 
        </tr> 
        <tr> 
            <td id="cTasksRow" title="Click to hide My Tasks" onclick="toggle(this)"
                <div class="tl"><div id="cTasksArrow" class="collapseArrows"><div class="tr"
                    <span id="cMyTasksLink" class="titleBar"
                    <b>&nbsp;&nbsp;&nbsp;&nbsp;My Actions</b></span
                </div></div></div> 
            </td> 
        </tr> 
        <tr> 
            <td class="gridFrame">     
                <table id="cTasksTable" width='1030px'
                    <tr> 
                        <td> 
                            <uc2:MyActions ID="cMyActions" runat="server"/> 
                        </td> 
                    </tr> 
                </table>   
            </td> 
        </tr> 
        <tr> 
            <td> 
                &nbsp; 
            </td> 
        </tr> 
        <tr> 
            <td id="cRisksRow" title="Click to hide My Risks" onclick="toggle(this)"
                <div class="tl" ><div id="cRisksArrow" class="collapseArrows"><div class="tr"
                    <span id="cMyRisksLink" class="titleBar"
                    <b>&nbsp;&nbsp;&nbsp;&nbsp;My Risks</b></span
                </div></div></div> 
            </td> 
        </tr> 
        <tr> 
            <td class="gridFrame"
                <table id="cRisksTable" width='1030px'
                    <tr> 
                        <td> 
                            <uc3:MyRisks ID="cMyRisks" runat="server" /> 
                        </td> 
                    </tr> 
                </table>   
            </td> 
        </tr> 
        <tr> 
            <td> 
                <input id="cCurrentDomain" type="text" runat="server" style="display:none"/>        
            </td> 
        </tr> 
    </table> 
    </form> 
</body> 
</html> 
 

ASCX Page:
<%@ Control Language="VB" AutoEventWireup="true" CodeFile="MyResponsibilities.ascx.vb" Inherits="MyResponsibilities" %> 
<%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %> 
 
<link href="Stylesheets/CustomGridStyle.css" rel="stylesheet" type="text/css" /> 
 
<telerik:RadAjaxManagerProxy ID="RespRadAjaxManagerProxy" runat="server"
    <AjaxSettings> 
        <telerik:AjaxSetting AjaxControlID="ResponsibilitiesRadGrid"
            <UpdatedControls> 
                <telerik:AjaxUpdatedControl ControlID="ResponsibilitiesRadGrid" LoadingPanelID="RadAjaxLoadingPanel1" /> 
            </UpdatedControls> 
        </telerik:AjaxSetting> 
    </AjaxSettings> 
</telerik:RadAjaxManagerProxy> 
<telerik:RadAjaxLoadingPanel ID="RespRadAjaxLoadingPanel1" runat="server" Transparency="30" IsSticky="True"
</telerik:RadAjaxLoadingPanel> 
<telerik:RadCodeBlock ID="RespRadCodeBlock1" runat="server"
    <script type="text/javascript"
    </script> 
</telerik:RadCodeBlock> 
<table style="width: 90%; height: 100%;"
    <tr> 
        <td> 
            <telerik:RadGrid ID="ResponsibilitiesRadGrid" PageSize="50" runat="server" Height="400px" BackColor="#CDE4FA" EnableViewState="false"
                <FooterStyle CssClass="GridFooter_Office2007"></FooterStyle>  
                <SelectedItemStyle CssClass="GridSelectedItemStyle" /> 
                <HeaderContextMenu Skin="Office2007" EnableTheming="True"
                    <CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation> 
                </HeaderContextMenu> 
                <MasterTableView> 
                    <RowIndicatorColumn> 
                        <HeaderStyle Width="20px"></HeaderStyle> 
                    </RowIndicatorColumn> 
                    <ExpandCollapseColumn> 
                        <HeaderStyle Width="20px"></HeaderStyle> 
                    </ExpandCollapseColumn> 
                    <AlternatingItemStyle CssClass="GridAltItemStyle" /> 
                </MasterTableView> 
                <ClientSettings> 
                    <Scrolling AllowScroll="true" UseStaticHeaders="true" SaveScrollPosition="true"
                    </Scrolling> 
                    <Selecting AllowRowSelect="true" /> 
                    <ClientEvents OnRowDblClick="respRowDblClick" /> 
                </ClientSettings> 
                <FilterMenu Skin="Office2007" EnableTheming="True"
                    <CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation> 
                </FilterMenu> 
            </telerik:RadGrid> 
        </td> 
    </tr> 
    <input id="hdnRespCurrentDomain" type="text" runat="server" style="display:none;"/> 
</table> 
<script language="javascript"
    startUpRespScript(); 
</script> 

Any help is much appreciated.

Thanks,

Trygve


Yavor
Telerik team
 answered on 30 Jul 2009
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?