Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
163 views
I have a form with 2 listboxes configured to support transfers between the 2.  I have written code to dynamically (load on demand) display tooltips on the listbox items.

This works great up until the point that an item is transferred from 1 listbox to the other listbox.  After this happens, any time the user hovers over a listitem an error is thrown with this message: "Cannot find a server control with ID=i173. If you need to specify a client-side element ID, please set IsClientID to true."  What's odd is that the server control id in the error message is NOT the one that I'm hovering over in the UI.  

The stacktrace for the error doesn't mention any line of my code, it's all in the telerik code so I'm not really sure what the cause of the problem is.

Stack Trace:

   at Telerik.Web.UI.RadToolTipBase.ThrowControlNotFound(String ctrlID) 
   at Telerik.Web.UI.RadToolTipManager.DescribeComponent(IScriptDescriptor descriptor) 
   at Telerik.Web.UI.RadWebControl.Telerik.Web.IControl.DescribeComponent(IScriptDescriptor descriptor) 
   at Telerik.Web.UI.ScriptRegistrar.GetScriptDescriptors(Control control) 
   at Telerik.Web.UI.ScriptRegistrar.GetScriptDescriptors(WebControl control) 
   at Telerik.Web.UI.RadWebControl.GetScriptDescriptors() 
   at Telerik.Web.UI.RadWebControl.System.Web.UI.IScriptControl.GetScriptDescriptors() 
   at System.Web.UI.ScriptControlManager.RegisterScriptDescriptors(IScriptControl scriptControl) 
   at System.Web.UI.ScriptManager.RegisterScriptDescriptors(IScriptControl scriptControl) 
   at Telerik.Web.UI.RadWebControl.RegisterScriptDescriptors() 
   at Telerik.Web.UI.RadWebControl.Render(HtmlTextWriter writer) 
   at System.Web.UI.Control.RenderControlInternal(HtmlTextWriter writer, ControlAdapter adapter) 
   at System.Web.UI.Control.RenderControl(HtmlTextWriter writer, ControlAdapter adapter) 
   at System.Web.UI.Control.RenderControl(HtmlTextWriter writer) 
   at System.Web.UI.PageRequestManager.RenderFormCallback(HtmlTextWriter writer, Control containerControl) 
   at System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children) 
   at System.Web.UI.Control.RenderChildren(HtmlTextWriter writer) 
   at System.Web.UI.HtmlControls.HtmlForm.RenderChildren(HtmlTextWriter writer) 
   at System.Web.UI.HtmlControls.HtmlContainerControl.Render(HtmlTextWriter writer) 
   at System.Web.UI.HtmlControls.HtmlForm.Render(HtmlTextWriter output) 
   at System.Web.UI.Control.RenderControlInternal(HtmlTextWriter writer, ControlAdapter adapter) 
   at System.Web.UI.Control.RenderControl(HtmlTextWriter writer, ControlAdapter adapter) 
   at System.Web.UI.HtmlControls.HtmlForm.RenderControl(HtmlTextWriter writer) 
   at System.Web.UI.HtmlFormWrapper.System.Web.UI.IHtmlForm.RenderControl(HtmlTextWriter writer) 
   at System.Web.UI.PageRequestManager.RenderPageCallback(HtmlTextWriter writer, Control pageControl) 
   at System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children) 
   at System.Web.UI.Control.RenderChildren(HtmlTextWriter writer) 
   at System.Web.UI.Page.Render(HtmlTextWriter writer) 
   at Telerik.Web.UI.RadAjaxPage.Render(HtmlTextWriter writer) 
   at System.Web.UI.Control.RenderControlInternal(HtmlTextWriter writer, ControlAdapter adapter) 
   at System.Web.UI.Control.RenderControl(HtmlTextWriter writer, ControlAdapter adapter) 
   at System.Web.UI.Control.RenderControl(HtmlTextWriter writer) 
   at Telerik.Web.UI.RadAjaxControl.RenderPageInAjaxMode(HtmlTextWriter writer, Control page) 
   at System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children) 
   at System.Web.UI.Control.RenderChildren(HtmlTextWriter writer) 
   at System.Web.UI.Page.Render(HtmlTextWriter writer) 
   at Telerik.Web.UI.RadAjaxPage.Render(HtmlTextWriter writer) 
   at System.Web.UI.Control.RenderControlInternal(HtmlTextWriter writer, ControlAdapter adapter) 
   at System.Web.UI.Control.RenderControl(HtmlTextWriter writer, ControlAdapter adapter) 
   at System.Web.UI.Control.RenderControl(HtmlTextWriter writer) 
   at Telerik.Web.UI.RadAjaxControl.RenderPageInAjaxMode(HtmlTextWriter writer, Control page) 
   at System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children) 
   at System.Web.UI.Control.RenderChildren(HtmlTextWriter writer) 
   at System.Web.UI.Page.Render(HtmlTextWriter writer) 
   at Telerik.Web.UI.RadAjaxPage.Render(HtmlTextWriter writer) 
   at System.Web.UI.Control.RenderControlInternal(HtmlTextWriter writer, ControlAdapter adapter) 
   at System.Web.UI.Control.RenderControl(HtmlTextWriter writer, ControlAdapter adapter) 
   at System.Web.UI.Control.RenderControl(HtmlTextWriter writer) 
   at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) 


Here is the listbox definition:

                <table > 
                    <tr> 
                        <td><telerik:RadListBox ID="PolicyList" runat="server" TransferMode="Move" ButtonSettings-Position="Right" Width="350px" Height="200px" 
                            SelectionMode="Multiple" AllowTransfer="true" TransferToID="SelectedPolicyList" EnableDragAndDrop="true" 
                            DataKeyField="Id" DataTextField="Title" DataValueField="Id" 
                            OnItemDataBound="PoliciesDataBound"                             
                            ><ButtonSettings AreaWidth="30px" Position="Right"  /> 
                            </telerik:RadListBox> 
                        </td> 
                        <td> 
                            <telerik:RadListBox ID="SelectedPolicyList" runat="server" Width="350px" Height="200px" 
                            SelectionMode="Multiple" EnableDragAndDrop="true"  
                            DataKeyField="Id" DataTextField="Title" DataValueField="Id" 
                            OnItemDataBound="SelectedPoliciesDataBound"                             
                            ></telerik:RadListBox> 
                        </td> 
                    </tr> 
                </table> 
 

Here is the Data bound event handler:

        protected void PoliciesDataBound(object sender, RadListBoxItemEventArgs e) 
        { 
            RadToolTipManager1.TargetControls.Add(e.Item.ID); 
        } 
 
        protected void SelectedPoliciesDataBound(object sender, RadListBoxItemEventArgs e) 
        { 
            RadToolTipManager1.TargetControls.Add(e.Item.ID); 
        } 
 

Here is the Ajax Event handler:

        protected void RadToolTipManager1_AjaxUpdate(object sender, Telerik.Web.UI.ToolTipUpdateEventArgs e) 
        { 
            if (e.TargetControlID != null && e.TargetControlID != ""
            { 
                RadListBoxItem item = (RadListBoxItem)PolicyList.FindControl(e.TargetControlID); 
                if (item == null
                    item = (RadListBoxItem)SelectedPolicyList.FindControl(e.TargetControlID); 
 
                if (item != null
                { 
                    PolicyDAO dao = new PolicyDAO(_domain); 
                    Policy pol = dao.Get(_session, Int32.Parse(item.Value)); 
                    HtmlGenericControl htmlGenericControl = new HtmlGenericControl("div"); 
                    htmlGenericControl.InnerHtml = pol.PolicyText; 
                    e.UpdatePanel.ContentTemplateContainer.Controls.Add(htmlGenericControl); 
                    
                } 
            } 
        } 
 

Chris
Top achievements
Rank 1
 answered on 16 Jan 2010
1 answer
106 views
Could not load type 'Telerik.Web.UI.RadUploadHttpModule'

I'm in the process of moving this application from a Windows Server 2003 box to a Windows Server 2008 box, and I'm getting the above error.





I've looked at this post (http://www.telerik.com/community/forums/aspnet-ajax/upload/could-not-load-type-telerik-web-ui-raduploadhttpmodule.aspx) and tried the solution, but that just changed the error to:

Could not load file or assembly 'Telerik.Web.UI, Version=2009.2.701.35, Culture=neutralPublicKeyToken=121fae78165ba3d4' or one of its dependencies. The system cannot find the file specified. 
 

Any ideas if I'm supposed to do something specific when moving to IIS 7.x?

Also, another issue has come up, the Menu control does not have any styling to it.  It works, but there's no themeing applied.  Any ideas on this?

Thanks,

King Wilder


King Wilder
Top achievements
Rank 2
 answered on 16 Jan 2010
2 answers
110 views
Hello Telerik Team,

        I'm using a radwindow as popup in the button event. On button click the window pops up and on closing of the pop up window it causes an error "Failed to load the  view state". But when I'm causing the autopostback of any other control and then click the button it works fine.Please tell me what would be the problem.

Regards
Unni
unnikkannan m
Top achievements
Rank 1
 answered on 16 Jan 2010
1 answer
102 views
Hi,
I am following the instructions from this article to implement database-based custom dictionary.
http://www.telerik.com/support/kb/aspnet-ajax/spell/changing-the-custom-dictionary-files-location.aspx

I am having a problem setting CustomDictionarySourceTypeName property. The example has custom dictionary file in app_code folder, but since I am using ASP.NET MVC App there is no app_code folder. I created a custom dictionary file and placed it under Models
directory. I tried something like this:

CustomDictionarySourceTypeName

 

="typeof(MvcApplication5.Models.MyDictionary).AssemblyQualifiedName"

 

and few other tries but I keep getting  "Can't find the custom dictionary source type." error.

Sorry this is more of a .net fundamental question, but any help is appreciated. Thanks!
Kate
Ram
Top achievements
Rank 1
 answered on 16 Jan 2010
2 answers
103 views
Hi, I have a treeview that I am populating on demand from a web service...it works great!  Only thing is, when a set of child nodes is returned, I'd like to hide the collapse/expand image for any of those child nodes that themselves don't have any children while showing the collapse/expand image for any nodes that do have children.  How would I do this?

Thanks in advance,
Andrew
Andrew
Top achievements
Rank 1
 answered on 16 Jan 2010
6 answers
262 views
I know I have done this before, but I can't seem to get this figured out.  I have a RadGrid and based on which row I want to format the text to {0:C}.  The APX:

 

 

 
 <telerik:RadGrid ID="GridView2" runat="server" HorizontalAlign="Left" Skin="Web20" OnItemDataBound="RadGrid1_ItemDataBound" >                       
                        <MasterTableView> 
                            <RowIndicatorColumn> 
                                <HeaderStyle Width="20px" /> 
                            </RowIndicatorColumn> 
                            <ExpandCollapseColumn> 
                                <HeaderStyle Width="20px" /> 
                            </ExpandCollapseColumn> 
                        </MasterTableView> 
                    </telerik:RadGrid>  

for an asp.net gridview I did this using rowdatabound:

 

 
    Sub gvCurrentYearBudgetnew_rowdatabound(ByVal sender As ObjectByVal e As GridViewRowEventArgs) Handles gvCurrentYearBudgetNew.RowDataBound  
        Dim i As Integer 
        Dim str1 As String = "nothing yet" 
        If e.Row.RowType = DataControlRowType.DataRow Then 
            e.Row.Cells(1).Font.Bold = True 
            e.Row.Cells(5).Font.Bold = True 
            e.Row.Cells(6).Font.Bold = True 
 
 
            e.Row.Cells(1).BackColor = Drawing.Color.Bisque  
            e.Row.Cells(5).BackColor = Drawing.Color.Bisque  
            e.Row.Cells(6).BackColor = Drawing.Color.Bisque  
 
            Select Case RTrim(e.Row.Cells(0).Text)  
                Case "Sales" 
                    For i = 1 To e.Row.Cells.Count - 1  
                        If Not String.IsNullOrEmpty(e.Row.Cells(i).Text) Then 
                            Try 
                                e.Row.Cells(i).Text = String.Format("{0:c}"Double.Parse(e.Row.Cells(i).Text))  
                            Catch 
                            End Try 
                        End If 
                    Next 
                Case "Gross Profit" 
                    For i = 1 To e.Row.Cells.Count - 1  
 
                        If Not String.IsNullOrEmpty(e.Row.Cells(i).Text) Then 
                            Try 
                                e.Row.Cells(i).Text = String.Format("{0:c}"Double.Parse(e.Row.Cells(i).Text))  
                            Catch 
                            End Try 
                        End If 
                    Next 
                Case "Price" 
                    For i = 1 To e.Row.Cells.Count - 1  
                        If Not String.IsNullOrEmpty(e.Row.Cells(i).Text) Then 
                            Try 
                                e.Row.Cells(i).Text = String.Format("{0:c}"Double.Parse(e.Row.Cells(i).Text))  
                            Catch 
                            End Try 
                        End If 
                    Next 
                Case "Actual GP" 
                    For i = 1 To e.Row.Cells.Count - 1  
                        If Not String.IsNullOrEmpty(e.Row.Cells(i).Text) Then 
                            Try 
                                e.Row.Cells(i).Text = String.Format("{0:c}"Double.Parse(e.Row.Cells(i).Text))  
                                e.Row.Cells(i).ForeColor = Drawing.Color.ForestGreen  
                            Catch 
                            End Try 
                        End If 
                    Next 
                Case "Actual Sales" 
                    For i = 1 To e.Row.Cells.Count - 1  
                        If Not String.IsNullOrEmpty(e.Row.Cells(i).Text) Then 
                            Try 
                                e.Row.Cells(i).Text = String.Format("{0:c}"Double.Parse(e.Row.Cells(i).Text))  
                                e.Row.Cells(i).ForeColor = Drawing.Color.ForestGreen  
                            Catch 
                            End Try 
                        End If 
                    Next 
            End Select 
        End If 
    End Sub 
So I just selected the row based on the text in the first column, the for each cell in the row I applied my format.

Can someone help me do the same thing using the Rad Ajax 3.5  Radgrid.   Thank you.

Fredrick Zilz
Top achievements
Rank 1
 answered on 15 Jan 2010
3 answers
175 views
Hi

I wanted to remove some of the items from the Link Manager dialog and followed this Post Click Here.

Achieved most of what I wanted, except the issue with the window height. When I remove couple of items within the LinkManager, it leaves some space at the bottom and the complete window does not re-size to fit properly. Take a look at the attached file. I have tried firebug and pointed out the height that I would like to change, but not sure how to change them.

Any help would be greatly appreciated.

thank you...
Vijay.
Vijay
Top achievements
Rank 1
 answered on 15 Jan 2010
0 answers
264 views
Hi;

I have a radgrid with detail table added to it.  I have the CommandItemDisplay="Top" set for the detail table.  During run time, when I click on the add new record button, then the insert item template becomes visible.  Here, I only see the Cancel button but not the Insert button.  I have attached a screen shot of the missing insert button in my grid.  Here is my radgrid setup in the aspx page. 

Your help is really appreciated.

Thanks in advance,
MS

<

 

div style="padding-top:10px;">

 

 

<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">

 

 

<AjaxSettings>

 

 

<telerik:AjaxSetting AjaxControlID="viewGrid">

 

 

<UpdatedControls>

 

 

<telerik:AjaxUpdatedControl ControlID="viewGrid" />

 

 

</UpdatedControls>

 

 

</telerik:AjaxSetting>

 

 

</AjaxSettings>

 

 

</telerik:RadAjaxManager>

 

 

<telerik:RadGrid ID="viewGrid" runat="server" ActiveItemStyle-BorderColor="ActiveBorder"

 

 

ShowStatusBar="True" AllowSorting="true" ItemStyle-BorderWidth="1px" OnSortCommand="viewGrid_Sort"

 

 

MasterTableView-ExpandCollapseColumn-CollapseImageUrl="~/App_Themes/Images/Content/collapse.gif"

 

 

MasterTableView-ExpandCollapseColumn-ButtonType="ImageButton" OnUpdateCommand="viewGrid_UpdateCommand"

 

 

MasterTableView-ExpandCollapseColumn-ExpandImageUrl="~/App_Themes/Images/Content/expand.gif"

 

 

MasterTableView-ExpandCollapseColumn-ItemStyle-HorizontalAlign="Center" OnItemCreated="viewGrid_ItemCreated"

 

 

MasterTableView-ExpandCollapseColumn-ItemStyle-VerticalAlign="Middle" OnItemDataBound="viewGrid_DataBound"

 

 

MasterTableView-ExpandCollapseColumn-ItemStyle-Width="2%" OnDetailTableDataBind="viewGrid_DetailTableDataBind"

 

 

OnNeedDataSource="viewGrid_NeedDataSource" OnPreRender="viewGrid_PreRender" AllowAutomaticUpdates="true"

 

 

OnInsertCommand="viewGrid_InsertCommand" AllowAutomaticInserts="true">

 

 

<MasterTableView AutoGenerateColumns="False" HierarchyLoadMode="ServerBind"

 

 

DataKeyNames="DomainName,ParentDomainValue" EditMode="InPlace" Name="Master" >

 

 

<DetailTables>

 

 

<telerik:GridTableView DataKeyNames="DomainName,ParentDomainName,ParentDomainValue" Name="DomainLabel"

 

 

AutoGenerateColumns="false" EditMode="InPlace" ItemStyle-BorderWidth="0px" AllowSorting="false"

 

 

ShowHeader="false" AllowAutomaticInserts="true" AllowAutomaticUpdates="true"

 

 

CommandItemDisplay="Top">

 

 

<ParentTableRelation>

 

 

<telerik:GridRelationFields DetailKeyField="DomainName" MasterKeyField="DomainName" />

 

 

</ParentTableRelation>

 

 

<CommandItemSettings RefreshText="Save Record" AddNewRecordText="Add a Domain Value" />

 

 

<Columns>

 

 

 

<telerik:GridBoundColumn UniqueName="DomainValue" DataType="System.String"

 

 

DataField="DomainValue" ColumnEditorID="GridTextBoxColumnEditor1">

 

 

<ItemStyle Width="10%" HorizontalAlign="Left" Wrap="false" />

 

 

</telerik:GridBoundColumn>

 

 

<telerik:GridCheckBoxColumn DataField="ActiveFlag" UniqueName="ActiveFlag"

 

 

DataType="System.Boolean" >

 

 

</telerik:GridCheckBoxColumn>

 

 

<telerik:GridCheckBoxColumn DataField="EditableFlag" UniqueName="EditFlag"

 

 

DataType="System.Boolean" Visible="false" >

 

 

</telerik:GridCheckBoxColumn>

 

 

<telerik:GridBoundColumn DataField="ParentDomainName" UniqueName="ParentDomainName"

 

 

DataType="System.String" Visible="false" >

 

 

</telerik:GridBoundColumn>

 

 

<telerik:GridBoundColumn DataField="ParentDomainValue" UniqueName="ParentDomainValue"

 

 

DataType="System.String" Visible="false" >

 

 

</telerik:GridBoundColumn>

 

 

<telerik:GridEditCommandColumn ButtonType="PushButton" EditText="Edit Domain Value" UpdateText="Update"

 

 

CancelText="Cancel" UniqueName="EditCommandColumn1">

 

 

<HeaderStyle Width="20px" />

 

 

</telerik:GridEditCommandColumn>

 

 

 

</Columns>

 

 

</telerik:GridTableView>

 

 

</DetailTables>

 

 

 

 

<Columns>

 

 

<telerik:GridBoundColumn UniqueName="DomainName" DataType="System.String" HeaderText="<%$ Resources:DomainAdmin, locDomainName %>"

 

 

DataField="DomainName" SortExpression="DomainName">

 

 

<HeaderStyle HorizontalAlign="Left" Width="10%" />

 

 

<ItemStyle Width="10%" HorizontalAlign="Left" Wrap="true" />

 

 

</telerik:GridBoundColumn>

 

 

<telerik:GridBoundColumn UniqueName="ParentDomainName" DataType="System.String"

 

 

HeaderText="<%$ Resources:DomainAdmin, locParentDomainName %>" DataField="ParentDomainName"

 

 

SortExpression="ParentDomainName">

 

 

<HeaderStyle HorizontalAlign="Left" Width="10%" />

 

 

<ItemStyle Width="10%" HorizontalAlign="Left" Wrap="true" />

 

 

</telerik:GridBoundColumn>

 

 

<telerik:GridBoundColumn UniqueName="ParentDomainValue" DataType="System.String" HeaderText="<%$ Resources:DomainAdmin, locParentDomainValue %>"

 

 

DataField="ParentDomainValue" SortExpression="ParentDomainValue">

 

 

<HeaderStyle HorizontalAlign="Left" Width="10%" />

 

 

<ItemStyle Width="10%" HorizontalAlign="Left" Wrap="true" />

 

 

</telerik:GridBoundColumn>

 

 

</Columns>

 

 

<AlternatingItemStyle Wrap="false"/>

 

 

<ItemStyle Wrap="false"/>

 

 

<RowIndicatorColumn Visible="False">

 

 

<HeaderStyle Width="20px" />

 

 

</RowIndicatorColumn>

 

 

<ExpandCollapseColumn ButtonType="ImageButton">

 

 

</ExpandCollapseColumn>

 

 

<EditFormSettings>

 

 

<PopUpSettings ScrollBars="None" />

 

 

</EditFormSettings>

 

 

 

 

 

</MasterTableView>

 

 

</telerik:RadGrid>

 

 

 

</div>

 


m chotu
Top achievements
Rank 1
 asked on 15 Jan 2010
0 answers
91 views
This is probably not a Telerik problem, but I am hoping that someone in here can help me with this.  I am using the RadPanelBar as a wizard for creating and managing users.  When a user selects to create a new user, I need to clear out all all the controls' values in each of the panels.  So I wrote a recursive function to do it.  It works, but for some reason I lose object references to some things totally unrelated to the controls I have just recursed through.  I also lose the linked events that worked before I ran this function.  Attached is my code that I run.

    Private Sub ClearAllFields(Optional ByRef ParentControl As Control = Nothing)  
        If ParentControl Is Nothing Then 
            For Each oPanel As RadPanelItem In rpbAccountAdmin.Items  
                ClearAllFields(oPanel.Items(0))  
            Next 
        Else 
            For Each oControl As Control In ParentControl.Controls  
                If oControl.HasControls Then 
                    ClearAllFields(oControl)  
                End If 
                If TypeOf (oControl) Is RadTextBox Then 
                    CType(oControl, RadTextBox).Text = "" 
                ElseIf TypeOf (oControl) Is RadComboBox Then 
                    CType(oControl, RadComboBox).SelectedIndex = -1  
                ElseIf TypeOf (oControl) Is TextBox Then 
                    CType(oControl, TextBox).Text = "" 
                ElseIf TypeOf (oControl) Is DropDownList Then 
                    CType(oControl, DropDownList).SelectedIndex = -1  
                ElseIf TypeOf (oControl) Is CheckBox Then 
                    Dim oCheckBox As CheckBox = CType(oControl, CheckBox)  
                    Select Case oCheckBox.ID  
                        Case "chkShowImages" 
                            oCheckBox.Checked = True 
                        Case Else 
                            oCheckBox.Checked = False 
                    End Select 
                End If 
            Next 
        End If 
    End Sub 
Seth
Top achievements
Rank 1
 asked on 15 Jan 2010
6 answers
273 views
Hi,

We have page where top section is coming from the usercontrol and bottom section have RadSplitter with the left and right pane.
Left pane have panelbar control and Right page should display content pages.

To achieve resize with the browser window and 100% width and height feature, we have followed below demo:
http://demos.telerik.com/aspnet-ajax/splitter/examples/resizewithwindow/defaultcs.aspx.

As per specifications, we have html, body, form and all parent elements to splitter set as style="height:100%".We have also considered HeightOffset to accomodate height of the top and bottom usercontrol.

After setup, page is rendered as expected but the rendering is not consist for every page call. Sometimes, we are getting spliter not resized to 100% width and height.

After debugging and investigation we have found as below:

In in-consistent manner, telerik is throwing javascript error during splitter rendering process and that error is stoping all the further activities(like resizing) to be done on rad splitter(like resizing). 

Further more, after this error,  all client side events are stopped working.

Javascript error we are getting during debugging is not passed to the browser and browser is rendering the page with wrong width and height.

Here is aspx of the page:

 

 

 

<html> 
    <head> 
        <style type="text/css">  
            html, body, form  
            {  
                height: 100%;  
                width: 100%;  
                margin: 0px;  
                padding: 0px;  
                overflow: hidden;  
            }  
        </style> 
    </head> 
    <body> 
        <!-- Top user control --> 
        <EPDM:top ID="top2" runat="server"></EPDM:top>   
        <form id="Form1" method="post" runat="server">  
            <telerik:RadScriptManager ID="RadScriptManager2" runat="server" /> 
            <telerik:RadSplitter ID="RadSplitter1" HeightOffset="200" runat="server" BorderStyle="Solid" 
                Skin="Office2007" Width="100%" Height="100%" ResizeMode="AdjacentPane" Orientation="Vertical">  
                <telerik:RadPane ID="navigationPane" runat="server" LiveResize="true" Width="250px" Scrolling="none">  
                    <telerik:RadPanelBar ID="RadPanelBar2" runat="server" ExpandMode="SingleExpandedItem" Skin="Office2007">  
                        <CollapseAnimation Duration="100" Type="None" /> 
                        <ExpandAnimation Duration="100" Type="None" /> 
                    </telerik:RadPanelBar> 
                </telerik:RadPane> 
                <telerik:RadSplitBar ID="RadSplitDataToolBar" runat="server" CollapseMode="Forward" 
                    CollapseExpandPaneText="Collapse and Expand" Style="border-color: Black; width: 10px;" skin="Office2007" /> 
                <telerik:RadPane ID="RadPane1" ContentUrl="abc.aspx" Scrolling="Both" runat="server" LiveResize="true">  
                </telerik:RadPane> 
            </telerik:RadSplitter> 
        </form> 
        <!-- Bottom user control --> 
        <EPDM:bottom runat="server" ID="bottom2" /> 
    </body> 
</html> 
 

 

We have Q3 2008 build. Please help us fixing this issue.

Thanks,
Vishal

Bryan Strader
Top achievements
Rank 2
 answered on 15 Jan 2010
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?