Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
59 views
Using normal link and even the JavaScript below, called in another function, will transfer the page to the new URL, and since caching is turned on, load it from the cache.  But clicking a node on the TreeView, although sending to the new page, will not use the cache, and the page loads from the server.

Do you know how to explain this behavior or a work around?  This code was added as an attempt to override default behavior as a fix to this issue, but had no effect noticeable from the default behavior

function OnClientNodeClicking(sender, eventArgs)
{
    var node = eventArgs.get_node();
    var url = node.get_navigateUrl();
    if (url) window.location = url;       
    eventArgs.set_cancel(true);
}
Richard
Top achievements
Rank 1
 answered on 11 May 2011
18 answers
201 views
Hi!
I have a issue in Safari; it adds <div>'s and <span>'s instead of <br />'s!
Sometimes it also add some el weirdo styling, like color(rgb...)
This must be a bug, or??
Any ideas? Safari users is wrecking my site layout :(
Rumen
Telerik team
 answered on 11 May 2011
2 answers
201 views
Hi.
How can i fill a combobox with values in insert-/editmode when i have a hierarchical grid for the detailtable?

Ceci
Cecilie Nordbø
Top achievements
Rank 1
 answered on 11 May 2011
10 answers
191 views
I have two issues with current release of the RibbonBar.

Is there a way to set the selected tab programmatically?  For instance, say the ribbonbar has 3 tabs, Home, Issues, and Setup.  A button on the setup ribbon, has a button that causes a postback.  Upon postback, there doesn't appear to be a way to programmatically set a tab as selected.  It would be nice if there was a .Selected property that was accessible.

The second issue is with the image urls.  It appears that the current property doesn't observe the virtual path ("~/"). I can workaround this with the following, but it is pretty ugly:

For Each t As RibbonBarTab In Me.RibbonBar.Tabs
    If t.Text = "Issue Tracker" Then
        For Each g As RibbonBarGroup In t.Groups
            If g.ID = "rbgIssueTracker" Then
                For Each b As RibbonBarButton In g.Items
                    Select Case b.ID
                        Case "btnIssueTracker_MyIssues"
                            Me.btnIssueTracker_MyIssues.ImageUrlLarge = ResolveUrl("~/img/toolbar/myissues.png")
                        Case "btnIssueTracker_AddIssue"
                            Me.btnIssueTracker_AddIssue.ImageUrlLarge = ResolveUrl("~/img/toolbar/addnew.png")
                        Case "btnIssueTracker_ProjectSummary"
                            Me.btnIssueTracker_ProjectSummary.ImageUrlLarge = ResolveUrl("~/img/toolbar/projectsummary.png")
                        Case "btnIssueTracker_Roadmap"
                            Me.btnIssueTracker_Roadmap.ImageUrlLarge = ResolveUrl("~/img/toolbar/roadmap.png")
                        Case "btnIssueTracker_ChangeLog"
                            Me.btnIssueTracker_ChangeLog.ImageUrlLarge = ResolveUrl("~/img/toolbar/changelog.png")
                    End Select
                Next
            ElseIf g.ID = "rbgIssueTrackerAdministration" Then
                For Each b As RibbonBarButton In g.Items
                    Select Case b.ID
                        Case "btnIssueTracker_Administration"
                            Me.btnIssueTracker_Administration.ImageUrlLarge = ResolveUrl("~/img/toolbar/administration.png")
                    End Select
                Next
            End If
        Next
    End If
Next

This works, but as you can see, it isn't very straightforward because there doesn't appear to be any FindButtonById/FindButtonByText property.

I am missing something in the current release?  Or are these feature planned for the future?
Arnaud
Top achievements
Rank 1
 answered on 11 May 2011
1 answer
65 views
Hi there,

I'm encounter a problem with selecting entire list (bullet-list or number-list) if there's only one item in the list.

If I have the following list:

<ul>
    <li>Item 1 
    <ul>
        <li>Second Level</li>
    </ul>
    </li>
    <li>Item 2</li>
    <li>Item 3</li>
</ul>

If I cursor to "second level" in Design view, the Html structure shown at the bottom is the following:
UL > UL > LI > RemoveElement

If I click on the second UL as I want to apply a style to the UL, the LI is selected and not the UL so I can't apply the style to the UL element.

But this works if there are more then one item in the 2nd UL:

<ul>
    <li>Item 1 
    <ul>
        <li>Second Level</li>
        <li>Second Level 2</li>
    </ul>
    </li>
    <li>Item 2</li>
    <li>Item 3</li>
</ul>


Please let me know how I can do this in design view without manual HTML editing.

Thanks
Rumen
Telerik team
 answered on 11 May 2011
1 answer
166 views
Hi there,

I've tried to integrate RadGrid into an application page of SP2010. After following the article http://www.telerik.com/help/aspnet-ajax/moss-deploying-radcontrols.html, I got error when loading the default site page (without RadGrid). If I remove the two <safecontrol> entries from web.config, the home page (without RadControl) can be displayed. But the page with RadGrid cannot be shown. It shows "An unexpected error has occurred". So far I don't find out what the unexpected error is.

In the application page, the RadGrid is a very simple one by binding to a static datatable using needdatasource method without any button. The version is 2011 Q1.

Any suggestion?

Thanks!
Maria Ilieva
Telerik team
 answered on 11 May 2011
4 answers
86 views
Is there a way to get the buttons generated by the upload control to use the new RadButtons with the images?

Regards,

Jon
Jon
Top achievements
Rank 1
 answered on 11 May 2011
3 answers
104 views
Is there a way to indent a bullet list?  If I use the indent function on the bullet list it will indent the list by creating another <ul> </ul> to wrap around my existing bullet list and I don't want that.  

Thanks
Rumen
Telerik team
 answered on 11 May 2011
1 answer
121 views
Hi,  
  
I'm using a single RadSchedulerRecurrenceEditor that I use to generate a recurrence rule. The user can also select time zone, start and end time on the page. How can the recurrence editor adjust to the selected time zone?  
  
Example if the user picks a start time of 10pm and an end time of 11pm in GMT-12, that means it is 10am in GMT the next day. So if the user have picked that his meeting.



Thanks,
Anders
Veronica
Telerik team
 answered on 11 May 2011
2 answers
143 views
Hello

I need to Dynamically load the usercontrols and bind the data in usercontrols dynamically
Here is my coad
1st user control : AvailableUsers.ascx
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
    <AjaxSettings>
        <telerik:AjaxSetting AjaxControlID="Timer">
            <UpdatedControls>
               <telerik:AjaxUpdatedControl ControlID="Timer" />
                <telerik:AjaxUpdatedControl ControlID="pnlChat" LoadingPanelID="RadAjaxLoadingPanel1" />
               
            </UpdatedControls>
        </telerik:AjaxSetting>
        
    </AjaxSettings>
</telerik:RadAjaxManagerProxy>
 
    <telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server" />
<table>
<tr>
<td>
      <telerik:RadDockLayout runat="server" EnableViewState="false" ID="RadDockLayout1"
    StoreLayoutInViewState="false">
    <telerik:RadDockZone runat="server" ID="RadDockZone2" Orientation="vertical" Style="width: 300px;
        min-height: 100px; float: right; margin-right: 20px;">
        <telerik:RadDock runat="server" ID="RadDock3" Title="Messenger" Width="300px">
            <ContentTemplate>
<asp:Timer ID="Timer" runat="server" Interval="10000" ></asp:Timer> 
<asp:Panel runat="server" ID="pnlChat" align="center" DefaultButton="btn_send" >  
                   
                   
           <table style="width:15%" border="1" align="center"><tr><td>
 
   
         
                   
              <telerik:RadListBox ID="radLBChat" runat="server" width="300" Height="100"></telerik:RadListBox>
                   
</td></tr>
<tr>
    <td style="width:85%">
  
    <telerik:RadTextBox ID="radtextbox1" runat="server" TextMode="MultiLine" width="100%"></telerik:RadTextBox>
    </td><td>
   <asp:Button ID="btn_send" Text="Send" runat="server" />
    </td></tr>
</table></asp:Panel>
 
</ContentTemplate>
        </telerik:RadDock>
    </telerik:RadDockZone>
        
</telerik:RadDockLayout>
 
    </td></tr>
    <tr>
     <td>
        
     </td>
    </tr>
    </table>
Based on selection Done in 1st usercontrol i need to populate 2nd user control data
Fallowing code i am using in 1st usercontrol 
 on cick of radpane item in 1st usercontrol i am binding 2nd usercontrol to panel in master page

 protected void ShowMessanger_Click(object sender, RadPanelBarEventArgs e)
        {
            _onLineChat.UserID = (int)Session["UserID"];
            _onLineChat.Status = 2;
            _onLineChat.SetCoachStatus();
            e.Item.SelectedCssClass = "RadPanelBar_Green";
            ucMessanger.Visible = true;
           Panel pnlMessanger =   ((Panel)Page.Master.FindControl("pnlWidget"));
           pnlMessanger.Controls.Add(ucMessanger);
        }

Second USerControl : Chat.ascx
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
        <AjaxSettings>
            <telerik:AjaxSetting AjaxControlID="Timer">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="radlist1" LoadingPanelID="RadAjaxLoadingPanel1">
                    </telerik:AjaxUpdatedControl>
                 
                </UpdatedControls>
            </telerik:AjaxSetting>
            </AjaxSettings>
    </telerik:RadAjaxManager>
    <telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server" />
 
            <telerik:RadDockLayout runat="server" EnableViewState="false" ID="RadDockLayout1"
     StoreLayoutInViewState="false">
        <telerik:RadDockZone runat="server" ID="RadDockZone2" Orientation="vertical" Style="width: 300px;
            min-height: 100px; float: left; margin-right: 20px;">
            <telerik:RadDock runat="server" ID="RadDock3" Title="Chat" Width="300px">
                <ContentTemplate>
                     
                         
                    <asp:Timer ID="Timer" runat="server" Interval="10000" OnTick="OnlineCoaches"></asp:Timer>
                    <telerik:RadPanelBar ID="radlist1" runat="server" Width="200" Height="100"
                             
                          AutoPostBack="True" OnItemClick="ShowMessanger_Click"></telerik:RadPanelBar>
              
                </ContentTemplate>
            </telerik:RadDock>
        </telerik:RadDockZone>
        
    </telerik:RadDockLayout>
Data in availableUsers.ascx will get changed based on timer value

Maria Ilieva
Telerik team
 answered on 11 May 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?