Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
109 views
Is RadAjaxManager smart enough to handle the duplicated AjaxSettings made statically or dynamically in the code behind?
Maria Ilieva
Telerik team
 answered on 23 Dec 2008
6 answers
255 views
I have set up a context menu on a treeview that has an "Expand All" option. This option will basically create all the underlying children node and expand them. The function basically relieves the user f having to click all the way down the tree.

The problem is that when I click on any of the underlying nodes, the OnNodeExpand event kicks off (which has code to expand the node). Is there anyway, I can set all these nodes to just open and close without setting off OnNodeExpand?
Markus
Top achievements
Rank 2
 answered on 23 Dec 2008
3 answers
181 views
I can't seem to figure out if this is possible. Instead of creating a complex label where I'm slapping values and text together, I'd actually like two labels. I would like one label inside each pie slice that has the value of the slice. I'd like another label outside the slice using the label connector that describes the what the slice represents (type).

Is it possible to create two labels in this manner? If so, how would I go about doing it? Thanks.
Ves
Telerik team
 answered on 23 Dec 2008
3 answers
188 views
I'm using the Q3 Rotator to make a slideshow. It has pause/play/left/right buttons. The RotatorType is set to FromCode. The left and right buttons are working as expected. The Play button doesn't want to work, though. Using the startAutoPlay() method advances a single frame, but doesn't start automatic advance. The resume() method does the same thing. Is there something I'm doing wrong?

Incidentally, if I set the RotatorType to "AutomaticAdvance", the pause/left/right buttons work as expected. The play button behaves the same way, though, using either the resume() or startAutoPlay() method - it only advances one frame.
Fiko
Telerik team
 answered on 23 Dec 2008
1 answer
133 views
Hey

I want to show a graph in line form but the user has an option to show it as a bar chart. when he clicks the link i get al these bars squeezed together.

Is my only option to redraw the series with lesser datapoints.

Greets
Jens van der Horst
Ves
Telerik team
 answered on 23 Dec 2008
1 answer
172 views
Hi everyone,

I have a base page, that contains a header, footer, TreeView in the left panel, and a right panel where all the pages are loaded into when the user clicks on a node.

When a page is loaded in the right panel, and I collapse/resize the TreeView panel (to the left), the controls in the right panel (grid mainly) resize fine.  However, when I then expand/resize the TreeView panel (to the right), the controls do not get resized back to what they originally were.  I've included my base page and the page that I'm loading in the right panel below.  Any help is appreciated!

Base Page:

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="TRMS.aspx.cs" Inherits="Web.TRMS" %> 
 
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %> 
<link href="UIComponents/TreeView/Web20/TreeView.Web20.css" rel="stylesheet" type="text/css" /> 
<!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>ROSS Rewrite</title> 
 
    <script type="text/javascript" src="JavaScript/LoadPage.js"></script> 
 
    <style type="text/css"
        html, body, form 
        { 
            height: 100%; 
            padding: 0px; 
            margin: 0px; 
        } 
        .header 
        { 
            height: 70px; 
            border-bottom: 1px black; 
        } 
    </style> 
</head> 
<body> 
    <form id="form1" runat="server"
    <telerik:RadScriptManager ID="uxRadScriptManager" runat="server" /> 
    <telerik:RadFormDecorator ID="uxRadFormDecorator" Runat="server" Skin="Web20" /> 
    <div id="header"
        <asp:Image ID="uxImageTLogo" runat="server" ImageUrl="~/UIComponents/Images/T_logo.jpg" /> 
        <asp:Image ID="uxImageMBCRLogo" runat="server" ImageUrl="~/UIComponents/Images/MBCR_logo.jpg" /> 
    </div> 
    <telerik:RadSplitter ID="uxRadSplitter" runat="server" LiveResize="True" Skin="Inox" 
        Height="100%" Width="99.9%" HeightOffset="190" SplitBarsSize=""  
        VisibleDuringInit="False"
        <telerik:RadPane ID="uxRadPaneLeft" runat="server" Height="17px" Width="250px" MaxWidth="400" 
            MinWidth="200"
            <telerik:RadTreeView ID="uxRadTreeView" runat="server" LoadingMessage="" OnClientNodeClicked="ClientNodeClicked" 
                Skin="Web20" OnNodeExpand="uxRadTreeView_NodeExpand" Font-Size="X-Small" EnableEmbeddedSkins="False" 
                Font-Names="Calibri"
                <CollapseAnimation Duration="400" Type="InQuart" /> 
                <ExpandAnimation Duration="400" /> 
            </telerik:RadTreeView> 
        </telerik:RadPane> 
        <telerik:RadSplitBar ID="uxRadSplitBar" runat="server" CollapseMode="Forward" /> 
        <telerik:RadPane ID="uxRadPaneRight" runat="server" ContentUrl="about:blank" Height="100%"
        </telerik:RadPane> 
    </telerik:RadSplitter> 
    <div id="footer" style="height: 20px; border-top: 1px black;"
    </div> 
    </form> 
</body> 
</html> 
 

Page I'm loading in the right panel:

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Trips.aspx.cs" Inherits="Web.Trips" %> 
 
<%@ 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>Untitled Page</title> 
    <telerik:RadCodeBlock ID="uxRadCodeBlock" runat="server"
        <style type = "text/css"
        .RadPicker_WebBlue 
        { 
            vertical-align: middle; 
        } 
        .RadPicker_WebBlue .rcInputCell 
        { 
            padding: 0 4px 0 0; 
        } 
        .RadInput_Default 
        { 
            font: 12px arial,sans-serif; 
        } 
        .RadInput_Default 
        { 
            vertical-align: middle; 
        } 
        .RadPicker_WebBlue .rcCalPopup 
        { 
            background-position: 0 -200px; 
        } 
        .RadPicker_WebBlue td a 
        { 
            display: block; 
            overflow: hidden; 
            position: relative; /*FF*/ 
            outline: none; /*FF*/ 
            z-index: 2; /*Opera*/ 
            width: 16px; 
            height: 16px; 
            margin: 0 2px; 
            background: url(                    'mvwres://Telerik.Web.UI, Version=2008.3.1125.35, Culture=neutralPublicKeyToken=121fae78165ba3d4/Telerik.Web.UI.Skins.WebBlue.Calendar.sprite.gif' ) no-repeat; 
            text-indent: -1111px; 
            text-align: center; 
            text-decoration: none; 
        } 
        .filterControls 
        { 
            font-family: Calibri; 
            font-size: medium; 
            padding: 5px; 
        } 
        .tripDetailsTop 
        { 
            font-family: Calibri; 
            margin-left: auto; 
            margin-right: auto; 
        } 
        .tripDetailsNested 
        { 
            font-family: Calibri; 
            border: 1px solid #333; 
        } 
        html, body, form 
        { 
            height: 100%; 
            padding: 0px; 
            margin: 0px; 
            overflow: hidden; 
        } 
        .filterColumns 
        { 
            width: 1%; 
            white-space: nowrap; 
        } 
         
 
        </style> 
     
    <script type="text/javascript"
   function centerUpdatePanel() 
   { 
        centerElementOnScreen(document.getElementById("uxRadAjaxLoadingPanel")); 
   } 
   function centerElementOnScreen(element) 
   { 
        var scrollTop = document.body.scrollTop; 
        var scrollLeft = document.body.scrollLeft; 
        var viewPortHeight = document.body.clientHeight; 
        var viewPortWidth = document.body.clientWidth; 
        if (document.compatMode == "CSS1Compat") 
        { 
         viewPortHeight = document.documentElement.clientHeight; 
         viewPortWidth = document.documentElement.clientWidth; 
         scrollTop = document.documentElement.scrollTop; 
         scrollLeft = document.documentElement.scrollLeft; 
        } 
        var topOffset = Math.ceil(viewPortHeight/2 - element.offsetHeight/2); 
        var leftOffset = Math.ceil(viewPortWidth/2 - element.offsetWidth/2); 
        var top = scrollTop + topOffset - 40; 
        var left = scrollLeft + leftOffset - 70; 
           element.style.position = "absolute"
        element.style.top = top + "px"; 
        element.style.left = left + "px"; 
    } 
    function RowSelected(sender, eventArgs) 
    { 
        var dataItem = $get(eventArgs.get_id()); 
        var grid = sender
        var MasterTable = grid.get_masterTableView(); 
        var row = MasterTable.get_dataItems()[eventArgs.get_itemIndexHierarchical()]; 
        var cell = MasterTable.getCellByColumnUniqueName(row, "PrimaryKey"); 
        alert(cell); 
    } 
    </script> 
    </telerik:RadCodeBlock> 
</head> 
<body> 
    <form id="form1" runat="server"
    <asp:ScriptManager ID="ScriptManager" runat="server"
    </asp:ScriptManager> 
    <telerik:RadAjaxLoadingPanel IsSticky="true" ID="uxRadAjaxLoadingPanel" runat="server" 
        Height="75px" Width="75px"
        <img alt="Loading..." src='<%= RadAjaxLoadingPanel.GetWebResourceUrl(Page, "Telerik.Web.UI.Skins.Default.Ajax.loading1.gif") %>' 
            style="border: 0px;" /> 
    </telerik:RadAjaxLoadingPanel> 
    <telerik:RadFormDecorator ID="uxRadFormDecorator" runat="server" Skin="Web20" /> 
    <telerik:RadWindowManager ID="uxRadWindowManager" runat="server" Skin="Web20"
    </telerik:RadWindowManager> 
    <telerik:RadSplitter ID="uxRadSplitter" runat="server" LiveResize="True" Skin="Inox" 
        Height="100%" Width="100%" SplitBarsSize="5px" BorderSize="0" BorderStyle="None" 
        Orientation="Horizontal" FullScreenMode="True" PanesBorderSize="0"  
        VisibleDuringInit="False"
        <telerik:RadPane ID="uxRadPaneFilter" runat="server" Height="3%" Width="" MaxWidth="400" 
            MinWidth="200" MaxHeight="0" Scrolling="None" MinHeight="0"
            <telerik:RadSlidingZone ID="uxRadSlidingZone" runat="server" ClickToOpen="True"
                <telerik:RadSlidingPane ID="uxRadSlidingPanel" runat="server" IconUrl="UIComponents/Images/filter.gif" 
                    Title="Filter" CssClass="filterControls" Height="350px" Scrolling="None" BackColor="White"
                    <div class="filterControls"
                        <table cellpadding="0" cellspacing="5" width="100%"
                            <tr> 
                                <td class="filterColumns"
                                    Trips Dates: 
                                </td> 
                                <td class="filterColumns"
                                    <telerik:RadDatePicker ID="uxRadDatePickerFrom" runat="server" Skin="WebBlue"  
                                        Culture="English (United States)"
                                        <Calendar runat="server" Skin="WebBlue" UseColumnHeadersAsSelectors="False" UseRowHeadersAsSelectors="False" 
                                            ViewSelectorText="x" ShowRowHeaders="False"
                                        </Calendar> 
                                        <DatePopupButton HoverImageUrl="" ImageUrl="" /> 
                                    </telerik:RadDatePicker> 
                                    &#160; To&#160; 
                                    <telerik:RadDatePicker ID="uxRadDatePickerTo" runat="server" Skin="WebBlue"  
                                        Culture="English (United States)"
                                        <Calendar runat="server" Skin="WebBlue" UseColumnHeadersAsSelectors="False" UseRowHeadersAsSelectors="False" 
                                            ViewSelectorText="x" ShowRowHeaders="False"
                                        </Calendar> 
                                        <DatePopupButton HoverImageUrl="" ImageUrl="" /> 
                                    </telerik:RadDatePicker> 
                                </td> 
                                <td> 
                                    &#160;&#160; 
                                </td> 
                            </tr> 
                            <tr> 
                                <td class="filterColumns"
                                    Division: 
                                </td> 
                                <td> 
                                    <telerik:RadComboBox ID="uxRadComboBoxDivision" runat="server" Skin="WebBlue" Width="330px"
                                        <CollapseAnimation Duration="200" Type="OutQuint" /> 
                                    </telerik:RadComboBox> 
                                </td> 
                                <td> 
                                    <asp:Button ID="uxButtonClearDivision" runat="server" Text="Clear" /> 
                                </td> 
                            </tr> 
                            <tr> 
                                <td class="filterColumns"
                                    Route: 
                                </td> 
                                <td> 
                                    <telerik:RadComboBox ID="uxRadComboBoxRoute" runat="server" Skin="WebBlue" Width="330px"
                                        <CollapseAnimation Duration="200" Type="OutQuint" /> 
                                    </telerik:RadComboBox> 
                                </td> 
                                <td> 
                                    <asp:Button ID="uxButtonClearRoute" runat="server" Text="Clear" /> 
                                </td> 
                            </tr> 
                            <tr> 
                                <td class="filterColumns"
                                    Direction: 
                                </td> 
                                <td> 
                                    <telerik:RadComboBox ID="uxRadComboBoxDirection" runat="server" Skin="WebBlue" Width="330px"
                                        <CollapseAnimation Duration="200" Type="OutQuint" /> 
                                    </telerik:RadComboBox> 
                                </td> 
                                <td> 
                                    <asp:Button ID="uxButtonClearDirection" runat="server" Text="Clear" /> 
                                </td> 
                            </tr> 
                            <tr> 
                                <td class="filterColumns"
                                    Trip Status: 
                                </td> 
                                <td> 
                                    <telerik:RadComboBox ID="uxRadComboBoxTripStatus" runat="server" Skin="WebBlue" Width="330px"
                                        <CollapseAnimation Duration="200" Type="OutQuint" /> 
                                    </telerik:RadComboBox> 
                                </td> 
                                <td> 
                                    <asp:Button ID="uxButtonClearTripStatus" runat="server" Text="Clear" /> 
                                </td> 
                            </tr> 
                            <tr> 
                                <td class="filterColumns"
                                    Origin: 
                                </td> 
                                <td> 
                                    <telerik:RadComboBox ID="uxRadComboBoxOrigin" runat="server" Skin="WebBlue" Width="330px"
                                        <CollapseAnimation Duration="200" Type="OutQuint" /> 
                                    </telerik:RadComboBox> 
                                </td> 
                                <td> 
                                    <asp:Button ID="uxButtonClearOrigin" runat="server" Text="Clear" /> 
                                </td> 
                            </tr> 
                            <tr> 
                                <td class="filterColumns"
                                    Destination: 
                                </td> 
                                <td> 
                                    <telerik:RadComboBox ID="uxRadComboBoxDestination" runat="server" Skin="WebBlue" 
                                        Width="330px"
                                        <CollapseAnimation Duration="200" Type="OutQuint" /> 
                                    </telerik:RadComboBox> 
                                </td> 
                                <td> 
                                    <asp:Button ID="uxButtonClearDestination" runat="server" Text="Clear" /> 
                                </td> 
                            </tr> 
                            <tr> 
                                <td class="filterColumns"
                                    Train #: 
                                </td> 
                                <td> 
                                    <telerik:RadComboBox ID="uxRadComboBoxTrainNumber" runat="server" Skin="WebBlue" 
                                        Width="330px"
                                        <CollapseAnimation Duration="200" Type="OutQuint" /> 
                                    </telerik:RadComboBox> 
                                </td> 
                                <td> 
                                    <asp:Button ID="uxButtonClearTrainNumber" runat="server" Text="Clear" /> 
                                </td> 
                            </tr> 
                            <tr> 
                                <td class="filterColumns"
                                    &#160;&#160; 
                                </td> 
                                <td> 
                                    <asp:RadioButtonList ID="uxOptRevenueType" runat="server" RepeatDirection="Horizontal"
                                        <asp:ListItem Selected="True">Revenue</asp:ListItem> 
                                        <asp:ListItem>Non-Revenue</asp:ListItem> 
                                        <asp:ListItem>Both</asp:ListItem> 
                                    </asp:RadioButtonList> 
                                </td> 
                                <td> 
                                    &#160;&#160; 
                                </td> 
                            </tr> 
                            <tr> 
                                <td class="filterColumns"
                                    &#160; 
                                </td> 
                                <td> 
                                    &#160; 
                                </td> 
                                <td> 
                                    &#160; 
                                </td> 
                            </tr> 
                            <tr> 
                                <td class="filterColumns"
                                    &#160; 
                                </td> 
                                <td> 
                                    &#160;<asp:Button ID="uxButtonOK" runat="server" OnClick="uxButtonOK_Click" Text="OK" /> 
                                    &#160;&#160; 
                                    <asp:Button ID="uxButtonNew" runat="server" Text="New" OnClick="uxButtonNew_Click" /> 
                                    &#160;&#160; 
                                    <asp:Button ID="uxButtonClearFilter" runat="server" Text="Clear" /> 
                                </td> 
                                <td> 
                                    &#160; 
                                </td> 
                            </tr> 
                        </table> 
                    </div> 
                </telerik:RadSlidingPane> 
            </telerik:RadSlidingZone></telerik:RadPane> 
            <telerik:RadSplitBar ID="uxRadSplitBarFilter" runat="server"  
            CollapseExpandPaneText="" EnableResize="False" /> 
        <telerik:RadPane ID="uxRadPaneList" runat="server" Height=""  
            BorderStyle="None"
            <telerik:RadGrid ID="uxRadGridList" style="border: 0; outline: none" runat="server" GridLines="None" Skin="WebBlue" 
                AllowSorting="True" OnColumnCreated="uxRadGridList_ColumnCreated" OnNeedDataSource="uxRadGridList_NeedDataSource" 
                Height="100%" Width="100%" OnItemCommand="uxRadGridList_ItemCommand"
                <HeaderContextMenu EnableTheming="True"
                    <CollapseAnimation Duration="200" Type="OutQuint" /> 
                </HeaderContextMenu> 
                <MasterTableView> 
                    <RowIndicatorColumn> 
                        <HeaderStyle Width="20px" /> 
                    </RowIndicatorColumn> 
                    <ExpandCollapseColumn> 
                        <HeaderStyle Width="20px" /> 
                    </ExpandCollapseColumn> 
                </MasterTableView><ClientSettings EnablePostBackOnRowClick="True"
                    <Selecting AllowRowSelect="True" /> 
                    <Scrolling AllowScroll="True" /> 
                </ClientSettings> 
                <FilterMenu EnableTheming="True"
                    <CollapseAnimation Duration="200" Type="OutQuint" /> 
                </FilterMenu> 
            </telerik:RadGrid></telerik:RadPane> 
        <telerik:RadSplitBar ID="uxRadSplitBarListDetail" runat="server" CollapseExpandPaneText="" /> 
        <telerik:RadPane ID="uxRadPaneDetail" runat="server" Height="50%" Scrolling="Y"
            <asp:Panel ID="uxAspPanel" runat="server"
                <table cellpadding="0" cellspacing="10" class="tripDetailsTop"
                    <tr> 
                        <td> 
                            <table cellpadding="0" cellspacing="10" class="tripDetailsNested"
                                <tr> 
                                    <td> 
                                        Train # 
                                    </td> 
                                    <td> 
                                        Date 
                                    </td> 
                                    <td> 
                                        Route 
                                    </td> 
                                    <td> 
                                        Direction 
                                    </td> 
                                    <td> 
                                        Schedule Type 
                                    </td> 
                                    <td> 
                                        Peak Type 
                                    </td> 
                                    <td> 
                                        Non-Revenue 
                                    </td> 
                                </tr> 
                                <tr> 
                                    <td> 
                                        <telerik:RadTextBox ID="uxRadTextBoxTrainNumberDetails" runat="server" Skin="WebBlue"
                                        </telerik:RadTextBox> 
                                    </td> 
                                    <td> 
                                        <telerik:RadTextBox ID="uxRadTextBoxTripDateDetails" runat="server" Skin="WebBlue"
                                        </telerik:RadTextBox> 
                                    </td> 
                                    <td> 
                                        <telerik:RadComboBox ID="uxRadComboBoxRouteDetails" runat="server" Skin="WebBlue"
                                            <CollapseAnimation Duration="200" Type="OutQuint" /> 
                                        </telerik:RadComboBox> 
                                    </td> 
                                    <td> 
                                        <telerik:RadComboBox ID="uxRadCombBoxDirectioDetailsn" runat="server" Skin="WebBlue"
                                            <CollapseAnimation Duration="200" Type="OutQuint" /> 
                                        </telerik:RadComboBox> 
                                    </td> 
                                    <td> 
                                        <telerik:RadComboBox ID="uxRadComboScheduleTypeDetails" runat="server" Skin="WebBlue"
                                            <CollapseAnimation Duration="200" Type="OutQuint" /> 
                                        </telerik:RadComboBox> 
                                    </td> 
                                    <td> 
                                        <telerik:RadComboBox ID="uxRadComboBoxPeakTypeDetails" runat="server" Skin="WebBlue"
                                            <CollapseAnimation Duration="200" Type="OutQuint" /> 
                                        </telerik:RadComboBox> 
                                    </td> 
                                    <td align="center"
                                        <asp:CheckBox ID="uxChkNonRevenue" runat="server" /> 
                                    </td> 
                                </tr> 
                            </table> 
                        </td> 
                    </tr> 
                </table> 
            </asp:Panel> 
        </telerik:RadPane> 
    </telerik:RadSplitter> 
    <telerik:RadAjaxManager runat="server"  
        ClientEvents-OnRequestStart="centerUpdatePanel();" ID="uxRadAjaxManager" > 
        <ClientEvents OnRequestStart="centerUpdatePanel();"></ClientEvents> 
        <AjaxSettings> 
            <telerik:AjaxSetting AjaxControlID="uxButtonOK"
                <UpdatedControls> 
                    <telerik:AjaxUpdatedControl ControlID="uxRadGridList" LoadingPanelID="uxRadAjaxLoadingPanel" /> 
                    <telerik:AjaxUpdatedControl ControlID="uxAspPanel"  
                        LoadingPanelID="uxRadAjaxLoadingPanel" /> 
                </UpdatedControls> 
            </telerik:AjaxSetting> 
            <telerik:AjaxSetting AjaxControlID="uxButtonNew"
                <UpdatedControls> 
                    <telerik:AjaxUpdatedControl ControlID="uxAspPanel"  
                        LoadingPanelID="uxRadAjaxLoadingPanel" /> 
                </UpdatedControls> 
            </telerik:AjaxSetting> 
            <telerik:AjaxSetting AjaxControlID="uxRadGridList"
                <UpdatedControls> 
                    <telerik:AjaxUpdatedControl ControlID="uxRadGridList"  
                        LoadingPanelID="uxRadAjaxLoadingPanel" /> 
                </UpdatedControls> 
            </telerik:AjaxSetting> 
        </AjaxSettings> 
    </telerik:RadAjaxManager> 
    </form> 
</body> 
</html> 
 

Tsvetie
Telerik team
 answered on 23 Dec 2008
1 answer
142 views
I have  a few griddropdowncolumns. The griddropcolumn is not working when the edit mode is popup.  When I change  the columntype  to Dropdownlist mode the combobox  works 100%.   The dropdown works 100% in normal Editforms mode when set as Radcombobox type.
It appears as if the dropdown opens behind the popupform. Normally the answer is in the Z-index of the control but I cannot find a place to set the Z-index of a griddropdowncolumn control.

Is this a bug or is there a setting that will resolve this?

Thanks

Armand

Rosen
Telerik team
 answered on 23 Dec 2008
8 answers
295 views
hello,

i seem to be running into a problem w/ my my RadMaskedTextBox. it doesnt happen all the time (and i havent determined why yet), but many times when a user starts typing into it, the cursor-focus will automatically jump to the *end* of the box, even after only one character is entered.

my control:

<Telerik:RadMaskedTextBox id="rmtbItemNumber" Mask="#-#####-##" Width="156" runat="server" /> 

...why is this happening? latest version.


thanks
matt
Pavel
Telerik team
 answered on 23 Dec 2008
2 answers
98 views
i put the upload control in the popup window, and when i add more FileInputsCount and the popup show a scroll bar , the select button did not have reflection, because the hidden input is not at the top of the select button, it not at the right place, when i click on the select button ,can not trigger the hidden one. thank you
peng
Top achievements
Rank 1
 answered on 23 Dec 2008
1 answer
85 views
I'm using Radwindow to open another aspx page. I have a button that invokes window.radopen to open an aspx indo a radwindow. However, when the window opens up, I lose debugging capability.

Am I doing something wrong?

Bill
Georgi Tunev
Telerik team
 answered on 23 Dec 2008
Narrow your results
Selected tags
Tags
+? more
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?