Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
57 views
Hi friends,

I am having a scenario where I am using radtree more likely the windows explorer's folder tree view, and there are certain scenarios where I need to open up a new a new radtab OR even a browser tab.

I tried to dig this up in forums but all that I found at most places was a suggestion to use "SelectedNode.Selected=true;" That does work for the same page holding off the node selected,

but what if I do post back / open up a new rad tab / open up a new browser tab-window ?

In theory all these ways should be seems-less.

I have that rad-tree in the master page so I **should** be able to store and use it in the page_Load even in the master page's code behind - would you please post a code demonstrating this ?

Is it possible to use the session variables and retrieving the same on the other page, if so I'd like to request a demo for that.

Thanks
Plamen
Telerik team
 answered on 21 Sep 2012
2 answers
268 views
Hi friends,

I am having a scenario where I am using radtree more likely the windows explorer's folder tree view, and there are certain scenarios where I need to open up a new a new radtab OR even a browser tab.

I tried to dig this up in forums but all that I found at most places was a suggestion to use "SelectedNode.Selected=true;" That does work for the same page holding off the node selected,

but what if I do post back / open up a new rad tab / open up a new browser tab-window ?

In theory all these ways should be seems-less.

I have that rad-tree in the master page so I **should** be able to store and use it in the page_Load even in the master page's code behind - would you please post a code demonstrating this ?

Is it possible way may be to use the session variables and retrieving the same on the other page, if so I'd like to request a demo for that.

Thanks
Plamen
Telerik team
 answered on 21 Sep 2012
1 answer
44 views
Hi,
i tried your example Specific Tooltip Data Without LOD.
I created an Application with the same scenario. I used same javascript and code behind. Only difference i use scrolling in radgrid.
But every time i hover over the same row after the tooltip closed i get a javascript error.
Runtime Error in Microsoft JScript: The property `innerHTML` No value can be determined: the object is null or undefined
Hovering over a different row is no problem.
Please can someone help it is very urgent

Thanks

Marin Bratanov
Telerik team
 answered on 21 Sep 2012
2 answers
209 views
I have 2 controls on my page that both have a RadWindowManager and RadWindow, each with their specified settings. Through searching, it looks like you can designate the RadWindowManager via client side code, but I am unable to get it to work. The last read in RadWindowManager still keeps the settings for both.

Here is my first .ascx control.

<telerik:RadWindowManager ID="RadWindowManager1" runat="server"
    Behaviors="Close" Animation="Slide" Modal="True"
KeepInScreenBounds="True" AutoSize="True" Width="870px" Behavior="Close">
    <Windows>
        <telerik:RadWindow ID="PopUp" runat="server"
            NavigateUrl="/Controls/ProductPopUpPage.aspx?GUID="
            IconUrl="/Images/JJIcon16x16.jpg">
        </telerik:RadWindow>
    </Windows>
</telerik:RadWindowManager>
<telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server">
</telerik:RadAjaxLoadingPanel>
<script type="text/javascript">
    // RadWindow
    function ShowProductPopUp(ProductGuid) {
        var oManager = GetRadWindowManager("RadWindowManager1");
        oManager.open("/Controls/ProductPopUpPage.aspx?GUID="+ProductGuid, "PopUp");
    }
 
 
</script>


And my second .ascx control

<div style="padding-left: 10px;">
    <asp:DropDownList ID="OEDropDownList" Width="200" Font-Size="Medium" runat="server">
        <asp:ListItem> Create a New Order</asp:ListItem>
        <asp:ListItem> View Pending Orders</asp:ListItem>
        <asp:ListItem> View Previous Orders</asp:ListItem>
    </asp:DropDownList>
    <div style="float: right;">
        <asp:Button ID="CreateNewOrder" Text="Create New Order" OnClientClick="openWinContentTemplate(); return false;"
            runat="server" />
    </div>
</div>
<%--<telerik:RadScriptManager ID="RadScriptManager1" runat="server" /> Comment back in for single test page--%>
<telerik:RadWindowManager ID="CreateNewOrderWindowManager" runat="server"
    EnableShadow="True">
    <Windows>
        <telerik:RadWindow runat="server" ID="CreateNewOrderPopUpWindow" Modal="true"
            Width="350px" Height="150px" RestrictionZoneID="ContentTemplateZone"
            Animation="Fade" IconUrl="/Images/JJIcon16x16.jpg">
            <ContentTemplate>
                <asp:Panel ID="CreateNewOrderPanel" runat="server" Width="300px" Height="100px" BackColor="AliceBlue"
                    BorderWidth="1px">
                    <asp:Label ID="CreateNewOrderLabel" runat="server" Text="Enter Order Name" />
                    <asp:TextBox ID="CreateNewOrderAddTextBox" runat="server" Width="200px" Text="Enter Order Name" />
                    <asp:Button ID="CreateNewOrderAddButton" runat="server" Text="Create" />
                </asp:Panel>
            </ContentTemplate>
        </telerik:RadWindow>
    </Windows>
</telerik:RadWindowManager>
<script type="text/javascript">
 
    function openWinContentTemplate() {
        var oManager = GetRadWindowManager();
        oManager.open(null, "CreateNewOrderPopUpWindow");
 
 
 
    }
     
</script>

I've tried adding the RadWindowManager client ID into both with no success.


Geoff
Top achievements
Rank 1
 answered on 21 Sep 2012
8 answers
109 views
I'm using Telerik version 2012.1.411.40

I'm not using the transfer buttons to transfer the elements between the two lists, I have another function that calls the "transferToDestination" function of the listbox.(client side obviously)

When it's done transferring, all of the element attributes that I defined disappear. Is there something I'm missing?
Chris
Top achievements
Rank 1
 answered on 21 Sep 2012
1 answer
105 views

Hi,

 We have a requirement like highlighting the dates in date picker placed at the top of the telerik rad scheduler.

We are using the 3 views of scheduler like - Month , Week and Day views.

Now the selected date is highlighted in the date picker.

Our requirement is, in Month view the datepicker has to highlight all the dates shown in the scheduler currently.

If it is a Week view , it need to highlight the dates in that week.

And if it is a Day view it has to highlight the date which it is showing, and it is working correctly by default.

Anyone please give some suggestions to do this.


Thanks
Plamen
Telerik team
 answered on 21 Sep 2012
3 answers
111 views
Hi,
   I have a telerik grid with template columns. One of the column has textbox as edit item template. And write onkeypress event for this textbox using javascript. On this event How i will identify the text inside the textbox is selected or not.

Thanks & Regards
Anzar.M

Eyup
Telerik team
 answered on 21 Sep 2012
2 answers
80 views
Hi all,

I don't know how to search for my issue then I post a thread.

Here is the structure of my website :

MasterPage
|--> viewAll.aspx (that contains RadWindowManager and RadAjaxLoadingPanel)
     |--> RadTabStrip + RadMultiPage
          |--> 4 RadPageView --> 3 of them have RadGrid wich contains HyperLink that must open a RadWindow to update data (the URL depends on the RadGrid that open her).

The issue is : the 2 first hyperlinks open the RadWindow using the URL of the third one.

Thanks for the help.

Regards
Antoine
Top achievements
Rank 1
 answered on 21 Sep 2012
1 answer
73 views

Here is the website I am working on Motorcycle Market

If you head over to this page:

Street Bike Boots Click on the brand "Icon" and the page dynamically loads with Ajax and all is good.

Currently caching is turned off but as soon as we enable caching, everything goes wrong.

After you click on the brand Icon, you come to this page:

http://www.motorcyclemarket.com/11/18/Street-Bike-Boots.aspx#&&onback=0%2c3000-8%2c7%2c6-8-49%2c48%2c28%2c138%2c52%2c44%2c51--16-BrandASC-0-

When user number one clicks on the above link, the 5 products are displayed. When multiple users from different machines click on the above link, then no products are displayed. Somehow we need to enable individual caching or add some additional query string to the url or figure something out so this issue stops and customers do not see a page with no products.

Our Ajax is set up to use Post and we have this problem in all browsers, not just IE. Your help is very appreciated.

Maria Ilieva
Telerik team
 answered on 21 Sep 2012
1 answer
85 views
We have a report that is being generated and shown in a RadWindow. One user reports that the header is not visible when the report appears (no visible 'x' to close the window). I've attached a partial screen shot (some information is blacked out). When I run the report it's fine, it's only one particular user who reports this.

Any ideas?
Marin Bratanov
Telerik team
 answered on 21 Sep 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?