Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
186 views
In the most recent IE9 Beta with 2010 Q1, the TreeView node expansion appears to not work, as you are not allowed to click the "plus" sign to expand the node.  It seems that the browser is not detecting it is a clickable area.  If you toggle into compatibility mode, the TreeView control works as expected.  Is this a known issue; can anyone else using the latest IE9 Beta confirm this issue?

I have the issue both on my own site I'm working on as well as on all the Telerik demo sites.  None of these work: http://demos.telerik.com/aspnet-ajax/treeview/examples/programming/loadondemandmodes/defaultcs.aspx


Jacob
Kamen Bundev
Telerik team
 answered on 30 Sep 2010
1 answer
107 views
Hi

I have several dynamically created dock windows and I want to add a hyperlinks into the titlebar. I've been trying to implent and itemplate class but not getting on that well..

As it stands heres what I have which does not seem to display anything in the titlebar
.....
Private
Function CreateRadDock(ByVal ItemType As Integer, ByVal itemid As Integer, ByVal DashItemId As Integer, ByVal row As Integer, ByVal title As String) As Telerik.Web.UI.RadDock
        Dim Placeholder As New PlaceHolder
        Dim dock As New RadDock()
        dock.DockMode = DockMode.Docked
        dock.ID = DashItemId.ToString
        dock.Title = title
        dock.Width = Unit.Percentage(100)
        dock.Height = Unit.Pixel(335)
        dock.AutoPostBack = True
        Dim titleBarTemplate = New DockTitleTemplate

..... etc

Do I need to call and add method to add the title bar template here?
Class DockTitleTemplate
    Implements ITemplate
    Public Sub InstantiateIn(ByVal container As Control) Implements ITemplate.InstantiateIn
        Dim link1 As New HyperLink()
        link1.ID = "link1"
        link1.Text = "my linke text"
        link1.NavigateUrl = "#"
        container.Controls.Add(link1)
    End Sub
End Class


Currently this appears to do nothing and does not show my hyperlink in the titlebar. Your help or links to examples would be great. - Thanks..

Johnathan
Rumen
Telerik team
 answered on 30 Sep 2010
3 answers
135 views
I am using a window manager to create an MDI - the functionality is quite standard:
1. On initial page load begin with 2 windows.
2. Populate a treeview with more options (windows) for them to show.
3. Allow them to close out the windows they have already opened
4. When done persist all changes in the database (windows, locations, dimensions, etc)

Basically, a dashboard.  I have most of it working, but I am running into a challenge because it appears when the windows are initially created (server side) they go out with an ID I assign to them.  Upon postbacks it appears they lose the ID assigned, and use "ctlxx" (where xx is a sequential number).  In order to synch the state between the client and server I need to know which windows they closed / changed so I can remove them from the window manager.  This part is important because I want to be able to save the dashboard and allow them to reload it as-is in the future - if they are just adding / resizing windows it works; it's when they remove them I have problems.  Things tried:

1. EnableViewState enabled / disabled on both the window and manager.  Tried different combinations.
2. PreserveClientState for the manager is set to true.

Has anyone attempted this?  I am so close...  does anyone have any suggestions?

Thank you,
John


Georgi Tunev
Telerik team
 answered on 30 Sep 2010
5 answers
216 views
Hello,

I wanted to use a RadWindow and so I followed the tutorial posted here:
http://www.telerik.com/help/aspnet-ajax/window_gettingstarted.html

But I already had a project so I tried to use that one, and I wanted my RadWindowManager and the windows to be in a ascx file.
I'm createing a control that has a simple dropdown and some button and when one of the buttons are pressed a popup is supposed to show where the user can put in some data. BUT I can't get the RadWindowManager to work in this ascx.

To test this component I have a default.aspx where I put it just to test things out, and when I moved the RadWindoManger to that page then it worked right away, but that is not the way I want it. I want my component to be complete so to say, I want to just drag in this component into another project and then it will have the dropdown, the buttons and also the fuctionality to open up radwindows.

Does it have something todo that the ascx isn't telerikcompatible?
I have a RadScriptManager on my default.aspx but I can't add another to the ascx, and it shouldn't need one either as I understand.

Any help would be very helpful.
Thank you in advance!
Georgi Tunev
Telerik team
 answered on 30 Sep 2010
4 answers
418 views
Let's say I'm using a RadMenu with twenty items in it. Each item has a command. And, for simplicity, let's say that each command will update some part of the page by loading a web user control that's tied to the specific command raised. So I set up a radajaxmanager and have as my setting the menu and then in the updated controls group each user control. Everything works as you'd expect except in one respect. I'm seeing that all of the updated controls are refreshed when the menu triggers a partial postback. And given what I see in AjaxManager this is the way it's supposed to be.

What I'd like to know is if there is a way that you can say, in simple terms, if it's command ABC then only update Panel1 from the UpdatedControls collection? Right now if it's any command Controls 1-20 (for example) are always updated. I thought about trying to control it with javascript but I haven't run across anything saying how to cancel a partial update for controls I don't want updated but allow it for controls I do want (and to change it dynamically based upon the values of a radmenu, for example).


Neil
Top achievements
Rank 1
 answered on 30 Sep 2010
1 answer
102 views
I have an AJAXed radgrid with some nestedTemplates where in one there is a panel that I'm generating a lookup request, basically have a search box and a listview that I want populated based on the search term. I initially tried to do this with a Texbox and the TextChanged event, which worked fine, except the postback only occurs on the focus being lost (I tried to hook the onkeydown event, but the manager is on a master page and was having a hard time linking). So then I tried a radcombobox and on the ItemRequested event, bind the listview, which is successful with items, but the listview doesn't get updated on the page (I concurrently update the combobox's items list which works fine)

Any suggestions?

Thanks,
Reuven
Veli
Telerik team
 answered on 30 Sep 2010
1 answer
52 views
Needed to upgrade the controls in a VS2008 project using 2010.1.519.  However, since the upgrade to the 2010.2.826 controls, the css is not being applied (properly).

Any suggestions?
Dobromir
Telerik team
 answered on 30 Sep 2010
5 answers
130 views
Hi all,

I want to make the dock command have an onclientclick command rather than have it as a button on the dock header, is there any way to do this?

regards,

Ash
Rumen
Telerik team
 answered on 30 Sep 2010
1 answer
157 views
Hi

When using IE6 behind an ISA Proxy the file upload sometimes fails after multiple uploads.  This is a SiteFinity site using a FileUpload control.  Here is a screenshot: http://www.programgood.net/fileuploadBug.png

I've made the file upload simple.  ie it only does 1 at a time, then renders the page to show a thumbnail of the recently uploaded photo.

Here is what I got back from the admin:

"Looking at our Proxy Server, the monitor shows Windows Authentication being used to make the connection at the start, but then it changes to Anonymous and The ISA Server goes, denied (can't have unknowns accessing the Internet).

By-Pass the Proxy Server (ie: make a direct connection to the Internet) and all works well. From my perspective, I can make a rule to allow this website direct access on our side, but it's not ideal and only resolves the problem for the CCC.. I'll be expecting this same issue with any other business working behind an ISA box."

Does this ring any bells, and any advice on where to start debugging?

Regards

Dave
Genady Sergeev
Telerik team
 answered on 30 Sep 2010
6 answers
388 views
I'm wondering if it's possible to drop the item text into the textbox at the position of the cursor when the mouse button is released. I've tried a few different ways but so far I haven't found how to do it or if it's even possible.
Maria Ignatius Ephrem
Top achievements
Rank 1
 answered on 30 Sep 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?