Telerik Forums
UI for ASP.NET AJAX Forum
4 answers
358 views
I have a grid that shows the Group Title text to the right of the expand/collapse icon.  I would like the text to be clickable or a hyperlink that expands the item in the group like the expand/collapse icon does.

Thanks
Reid
Top achievements
Rank 2
 answered on 16 Jan 2009
1 answer
120 views
Last week I still can access/download latest internal build and it approve itself as a very good assistant to our development. This week I tried the same download page several times but looks like everything was removed. Why?

http://www.telerik.com/account/latest-internal-builds.aspx
Paul
Telerik team
 answered on 16 Jan 2009
0 answers
76 views
Hi Team,
    I have two tree view control . Some times from left tree view control I drag node and drop into the right side tree control . And some times I edit the text of the right side tree view control . I have  button , on click of the button I have to update ( If node is edited)  and insert( if new node is dragged from the left tree view control ) . Currenty to identify which node is edited and which node is newly added to the right side tree view control , I am changing the color ( For edited node , I am chaning the color to 'Green' and for new node , I am changing the color to 'Red'). 
             Using a for loop I am traversing through all the nodes and updating or inserting into the database based upon the color of the node . I am doing this , becuase I don't want to hit the database unnecessarily for all the nodes ( If any node is not edited ) .What I am thinking is that , this is not the best practice . Can you help me out to know , which node I have edited and which node I have added  while I am traversing through the nodes

Regards
Manoj
Manoj
Top achievements
Rank 1
 asked on 16 Jan 2009
1 answer
136 views
Hi, all!

I've upgraded RadControls_for_ASP.NET_AJAX_2008_1_515 to RadControls_for_ASP.NET_AJAX_2008_3_1125 and faced the problem. In old version I could set "Calendar-Skin" and "DateInput-Skin" to different values on RadDatePicker control. But new version ignores them both and accepts only "Skin" property. I made workaround using "SharedCalendarID".

Who knows: why RadDatePicker doesn't accept separate skins for the calendar and input box?

Thanks!
 
Dimo
Telerik team
 answered on 16 Jan 2009
14 answers
261 views
Hi,
     I have a RadPanelbar with several RadPanelItem inside the panel bar in one aspx page. Each panel item can be expanded / collapsed. Assume the user works only one panel item and the rest is collapsed. When the user closes the browser and opens again it shows everything as expanded. I tried PersistStateInCookie as true and with unique CookieName for that panelbar. I just want to preserve the same state of the radpanel bar while it was closed. Is this possible? If so please let me know.

Regards,
Elango
Atanas Korchev
Telerik team
 answered on 16 Jan 2009
2 answers
111 views
It seems the Spell Checker in these forums stopped working for me.  I have only been here a few days and have used it sucessfully but now when I click the "ABC" icon it comes up with a JavaScript error.

SpellC heck Handler Server Error:500
Reid
Top achievements
Rank 2
 answered on 16 Jan 2009
2 answers
110 views
Is there a way to set the mindate programatically, preferrably at serverside

I tried ReplaceDatePicker.MinDate.AddDays(7) but the date is simply not changed
alh
Top achievements
Rank 1
 answered on 16 Jan 2009
1 answer
131 views
I want to use the form to add events (recurrence and non recurrence)  from a page without the scheduler on it. We have forms that clients fill out and they can select a date or set of dates that the event is happening on. Then they selected the dates I would like the scheduler form to come up and have them fill that out and save it so that it shows on the calendar.

When they edit I would like to pull the data they need from the scheduler.

I don't need the title or description because I would want that pulled from the form they are filling out. I simply want the recurrence date part.

Any examples out there.

j
Peter
Telerik team
 answered on 16 Jan 2009
3 answers
194 views
Hello Telerik,

We are having an issue with the popup window.

Following is the scenario:
1) From a parent page, open a popup window. Close the window.
2) Now open a second popup. when the second popup is about to open, the content of first window loads, and then the contents of the second window loads.

Thanks.
Fiko
Telerik team
 answered on 16 Jan 2009
1 answer
100 views
http://tinyurl.com/86m8m6

The above link takes you to a screen capture of the error im getting.  I've used the code from the example provided for dynamically loading/saving Dock's from a database.

I think I've narrowed the issue, but I'm not sure how to correct it.

What I've done is: For each type of dock I want to add, I have defined a ContentTemplate in an ascx (each one has their own ascx).

When a user clicks a linkbutton, one of the below 3 are triggered.
<asp:updatepanel runat="server" id="UpdatePanel1">  
    <triggers> 
        <asp:asyncpostbacktrigger controlid="AddType1DockLinkButton" eventname="Command" /> 
        <asp:asyncpostbacktrigger controlid="AddType2DockLinkButton" eventname="Command" /> 
        <asp:asyncpostbacktrigger controlid="AddType3DockLinkButton" eventname="Command" /> 
    </triggers> 
</asp:updatepanel> 

If, for instance, I trigger the AddType1DockLinkButton, it works fine and I can continue to click it and add as many as I want. But, as soon asI click one of the other types, it crashes.

I think it has something to do with either the AsyncPostBackTriggers or StartUpScripts that I'm registering.

Here's the code where I create the RadDock. (not the most beautiful at this point, I'm just trying to get it to work.

        private RadDock CreateRadDock(UIContent uiContent, int contentControlID)  
        {  
            RadDock dock = new RadDock();  
 
            // Use the ID from uiContent, which holds all contentcontrols.  
            dock.UniqueName = uiContent.ID.ToString(); //Guid.NewGuid().ToString();  
            dock.ID = string.Format("RadDock{0}", dock.UniqueName);  
            //dock.Text = string.Format("Added at {0}", DateTime.Now);  
            //dock.Width = Unit.Pixel(300);   
            dock.TitlebarContainer.Height = Unit.Pixel(35);  
            dock.EnableEmbeddedSkins = false;  
            dock.ContentContainer.Style.Add(HtmlTextWriterStyle.Overflow, "hidden");  
 
            switch (uiContent.ContentTypeID)  
            {  
                case 1:  
                    dock.Title = "Type1";  
                    dock.TitlebarTemplate = Page.LoadTemplate("~/UIControls/ContentTitleBar.ascx");  
                    dock.ContentTemplate = Page.LoadTemplate("~/contentcontrols/Type1.ascx");  
                    break;  
                case 2:  
                    dock.Title = "Type2";  
                    dock.TitlebarTemplate = Page.LoadTemplate("~/UIControls/ContentTitleBar2.ascx");  
                    dock.ContentTemplate = Page.LoadTemplate("~/contentcontrols/Type2.ascx");  
                    break;  
                case 3:  
                    dock.Title = "Type3";  
                    break;  
                default:  
                    dock.Title = "Untitled";  
                    break;  
            }  
 
            DockCommand editCommand = new DockCommand();  
            editCommand.CssClass = "rdEdit";  
            editCommand.Text = "Edit Settings";  
            dock.Commands.Add(editCommand);  
 
            dock.Commands.Add(new DockCloseCommand());  
            dock.Commands.Add(new DockExpandCollapseCommand());  
 
            dock.Command += new DockCommandEventHandler(dock_Command);  
 
            return dock;  
        } 
Nikolay Raykov
Telerik team
 answered on 16 Jan 2009
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?