Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
68 views
Hi, I have a problem with the image manager.

In my project I have used a file browser content provider to integrate the editor with my database.

I have just updated the reference from 2010.2.713.35 to 2010.2.826.35 and with the old one everythings work well, but after I have updated the dll I have an issue:

when the image manager is loaded everything go well, but when I select one directory, the list of the image are not updated.
I have seen that the ResolveDirectory in my file browser content provider class is not called, like was before the upgrade.

Thank you
fforna
Top achievements
Rank 2
 answered on 28 Sep 2010
1 answer
160 views

hi guys,

 please help me out!

I have a master page that contains a RadMenu:

on Masterpage.master:

01.<div id="menuDiv">        
02.   <telerik:RadMenu  ID="RadMenu1" runat="server" BorderColor="black">  
03.   </telerik:RadMenu>  
04.lt;/div>

on Masterpage.master.cs there are a banch of menuitems like this:
01.protected void BuildDisplayMenu()  
02.{  
03.    RadMenuItem item1_3 = new RadMenuItem();  
04.    item1_3.Text = "Display";  
05.    item1_3.ToolTip = "Display Setting";  
06.      
07.    item1_3.NavigateUrl = "~/traders/Preference/Display.aspx";  
08.    RadMenu1.Items.Add(item1_3);  
09.}

 
Then,
I have a content page called Preference.aspx, which has an Radio functioning the show or hide
of the "Display" item clicked by clients:

01.<tr><td>Show Display:</td><td>  
02.<asp:RadioButtonList ID="si_enable_Display" runat="server" RepeatLayout="Flow" RepeatDirection="horizontal" AutoPostBack="true">  
03.    <asp:ListItem Text="Yes" Value="enable" onclick="javascript:DisplayStat(value);"></asp:ListItem>  
04.    <asp:ListItem Text="No" Selected="true" Value="disable" onclick="javascript:DisplayStat(value);"></asp:ListItem>  
05.</asp:RadioButtonList></td></tr>
I have tried numerous times, but still failed! 
The DisplayStat() function I have tried this:
01.<script type="text/javascript" language="javascript">  
02.    function DisplayStat(object)  
03.    {  
04.        var menuID = $find('<%=((RadMenu)Master.FindControl("RadMenu1")).ClientID %>');  
05.        var item = menuID.findItemByText("Display");  
06.        if(object=="enable"){  
07.         item.Enable();  
08.         }  
09.         else{  
10.            item.disable();  
11.         }  
12.    }  
13. 
14.</script>
The 'menuID' is not functioning..by some reason. I have also tried
var menuID = document.getElementById('<%=((RadMenu)Master.FindControl("RadMenu1")).ClientID %>');

And the problem still exists.

Please Help me out !!!thanks A lot!!!

Veronica
Telerik team
 answered on 28 Sep 2010
1 answer
94 views
Hai,

Im trying to use two new telerik themes. When we started our project we had been using Q1 release, then we updated it to Q2(2010.2.826.35). Im facing CSS issue with Window7 and Sitefinity themes, it happens only with IE not in Firefox.In firefox its working exactly fine. But other themes are working fine in IE. Please give me the solution... (*We are really near to project deadline)...
Dimo
Telerik team
 answered on 28 Sep 2010
1 answer
106 views
Hi,

I am using a RadGrid with form based editing on my page. I have defined my own template for the form that is used for editing purpose. In the template i have a table with some fields in one of my <td> I have used a Rad Datepicker, By functionality it is working fine but the datepicker that is opening on clicking the Rad DatePicker does not opens right at the picker image rather it opens at any random position in the UI. Please suggest for any solutions.

Smita.
Dimo
Telerik team
 answered on 28 Sep 2010
2 answers
60 views
hi,

I want to do something in javascript while the node is animating, actually, I have html div which contains vertical line, now, I want to increase the height of that line while the height of treeview is increasing, so it will looks like the line animating with tree too (decreasing is same)

I found onclientnodeanimationend, which is triggered only after the finish of animation, so, is there an event looks like onclientnodeanimating or how can I solve this problem?
Yana
Telerik team
 answered on 28 Sep 2010
1 answer
125 views
i have used Splieter..every thing working fine but..
i want to bydefault dock open.
so onces used click on the page he will find dock open by default.
what setting i havr to do??

2) i wan to increase size of spliterpanel text "Task List"..which is on right hand side

my code is

 <telerik:RadSplitter ID="RadSplitter1" runat="server" Width="100%" Height="100%" Skin="Web20" >
        <telerik:RadPane ID="LeftPane" runat="server" Width="22px" Scrolling="none">
            <telerik:RadSlidingZone ID="SlidingZone1" runat="server" Width="22px">
                <telerik:RadSlidingPane ID="RadSlidingPane1" Title="Task List"  IconUrl="~/images/PaneIcon.gif"  runat="server" Width="150px">
                    <table>
                        <tr>
                            <td>
                                <asp:LinkButton ID="lnkPlanned" runat="server" CommandName="cmdPlanned" Visible="True"
                                    CommandArgument="Planned Task" Text="Planned Task" ToolTip="Planned Task" CssClass="grid-text" Font-Size="12px"></asp:LinkButton>
                            </td>
                        </tr>
                        <tr>
                            <td>
                                <asp:LinkButton ID="lnkUnplanned" runat="server" CommandName="cmdUnPlanned" Visible="True"
                                    CommandArgument="UnPlanned Task" Text="UnPlanned Task" ToolTip="UnPlanned Task" CssClass="grid-text" Font-Size="12px"></asp:LinkButton>
                            </td>
                        </tr>
                         <tr>
                            <td>
                                <asp:LinkButton ID="lnkIssues" runat="server" CommandName="cmdIssues" Visible="True"
                                    CommandArgument="Issues" Text="Issues" ToolTip="Issues" CssClass="grid-text" Font-Size="12px"></asp:LinkButton>
                            </td>
                        </tr>

                    </table>
                </telerik:RadSlidingPane>
            </telerik:RadSlidingZone>
        </telerik:RadPane>
        <telerik:RadSplitBar ID="Radsplitbar1" runat="server">
        </telerik:RadSplitBar>
        <telerik:RadPane ID="Radpane2" runat="server">
            <div style="padding: 5px">
                <h2>
                    RadEditor... on msdn2.microsoft.com
                </h2>
                <p>
                    TESTING 1
                </p>
                <p class="postfoot">
                    TESTING 2
                </p>
            </div>
        </telerik:RadPane>
    </telerik:RadSplitter>

Svetlina Anati
Telerik team
 answered on 28 Sep 2010
13 answers
223 views
Hi,
I we want to show the Time period as Row is it possible in Telerik scheduler control or not.
If this feature is available we will purchase the s/w in July 2010.
Please help us this feature is very important for us.
If this feature is not there we have to go for another third party controls.

we have to show like the below

|   8:00  |   9:00  | ....................................... |   19:00  |   ........................
Peter
Telerik team
 answered on 28 Sep 2010
0 answers
158 views
I am currently developing a web application using ASP.NET MVC2 and the Telerik Extensions for ASP.NET MVC.  I need a tree control that allows me to select multiple items and drag them (much like the RadTreeView).

Does anyone have any experience getting a RadTreeView to work in a Telerik Extensions for ASP.NET MVC Window Control?  

Or does anyone know how to get the Telerik Extensions for ASP.NET MVC TreeView to allow multiple items to be dragged and dropped?

Any help would be greatly appreciated.

Thanks,
Paul
Paul
Top achievements
Rank 1
 asked on 28 Sep 2010
1 answer
82 views
I have included a RadFormDecorator and a Login control on my page, which displays perfectly in Firefox.

In IE the textboxes do not style well at all. The left and right edges of the textboxes display a couple of pixels above the middle part of the textbox. It looks really bad.

Is there any solution to this, or should I abandon the Login control?
Lini
Telerik team
 answered on 28 Sep 2010
2 answers
164 views
Hi all,

I'm attempting to set the style of a root menuitem to it's focussed state when an item in its submenu has been selected. I'm doing this in a master page, code as follows:

Private Sub sitemenu_ItemCreated(ByVal sender As Object, ByVal e As Telerik.Web.UI.RadMenuEventArgs) Handles sitemenu.ItemCreated
        Dim item As RadMenuItem = sitemenu.FindItemByUrl(Request.Url.PathAndQuery)
        If item IsNot Nothing Then
            item.CssClass = "focused"
        End If
 
    End Sub


This works great, and the root items show the focussed state when clicking between them. However when i click on a child item, the root menu item does not have the focused class added to it. Any pointers? 
Big Daftie
Top achievements
Rank 1
 answered on 28 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?