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

i have a problem, i want to float two menu item on the right, but only the last one would float to the right.

I set it in the css file.

Can anyone help me?

Sorry for my english.

Thanks

Andrea
Shinu
Top achievements
Rank 2
 answered on 10 Feb 2012
1 answer
66 views
Hi,
I have a problem with ImageEditor in the pages that have a MasterPageFile.
when I use ImageEditor in a seperated WebForm (without MasterPage) it works properly,
but when I use a MasterPage and put ImageEditor in the <asp:Content> tag, the tools dialogs don't load completely,
the tools dialogs only contain a title bar.
Thank you
Pero
Telerik team
 answered on 10 Feb 2012
1 answer
137 views
Hello there,

I'm unable to sort out how to pass the parameters from a selecte item in radwindow to a textbox.

means we have a textbox and a small button, so if we click it it opens a small radwindow and if we select any item or anything so how to pass it from the window to the textbox. means how to do it using the "Request.QueryString"............


please help my friends
Princy
Top achievements
Rank 2
 answered on 10 Feb 2012
2 answers
73 views
Hi.
I had a gridview  with paging and because of this, if i do a foreach for grid items i only get the current page items.
As far i know i could set the allow paging to false, rebind it , and gett all items this way, using a foreach (for example)
Since my work at the moment is upgrading some one else work, i would try to avoid this aproach, since that  causes me issues on rebind data source on gridview. due to programing logic already implemented. 
Is there any way to get All items from datasource, who where primarily bind to grid besides my aproach? 

my current aproach: 
...
   this.RadGrid1.AllowPaging = false;
            this.RadGrid1.Rebind();
...
xis xix
Top achievements
Rank 1
 answered on 10 Feb 2012
1 answer
109 views
I have radcontextmenu which opens on click of a button, after opening it should stay open until same button is clicked again, but when I click that button again instead of closing it, the button reopens the context menu, please help.
Princy
Top achievements
Rank 2
 answered on 10 Feb 2012
1 answer
111 views
when I press a search button that into RadAjaxPanel , the divs of my page aspx are unconfigured, can somebody help my please??
note:the master page was created with artisteer 3.
Tsvetoslav
Telerik team
 answered on 10 Feb 2012
2 answers
133 views
I'm trying to have a radwindow force a refresh of a grid on the parent (named "grdLectures")
I have this on the parent window which i can see does run when called from the radwindow :
          function refreshGrid(arg) {
                   if (!arg) {
                    $find("<%= RadAjaxManager1.ClientID %>").ajaxRequest("Rebind");
                }
                else {      
                    $find("<%= RadAjaxManager1.ClientID %>").ajaxRequest("RebindAndNavigate");
                }

my RadAjaxManager is like this:

    <telerik:RadAjaxManager runat="server" ID="RadAjaxManager1" 
                    OnAjaxRequest="RadAjaxManager1_AjaxRequest"  
DefaultLoadingPanelID
="RadAjaxLoadingPanel1">         <AjaxSettings>           <telerik:AjaxSetting AjaxControlID="RadAjaxManager1">                     <UpdatedControls>                         <telerik:AjaxUpdatedControl ControlID="grdLectures" />                     </UpdatedControls>                 </telerik:AjaxSetting>             <telerik:AjaxSetting AjaxControlID="grdAssets">                 <UpdatedControls>                     <telerik:AjaxUpdatedControl ControlID="grdAssets" />                     <telerik:AjaxUpdatedControl ControlID="grdLectures" />                     <telerik:AjaxUpdatedControl ControlID="msg" />                 </UpdatedControls>             </telerik:AjaxSetting>             <telerik:AjaxSetting AjaxControlID="grdLectures">                 <UpdatedControls>                     <telerik:AjaxUpdatedControl ControlID="grdLectures" />                 </UpdatedControls>             </telerik:AjaxSetting>         </AjaxSettings>     </telerik:RadAjaxManager>

and the Ajax Event handler (which does not get executed as far as I can tell)  :

    protected void RadAjaxManager1_AjaxRequest(object sender, AjaxRequestEventArgs e)
    {
        if (e.Argument == "Rebind")
        {
            grdLectures.MasterTableView.SortExpressions.Clear();
            grdLectures.MasterTableView.GroupByExpressions.Clear();
            grdLectures.Rebind();
        }
        else if (e.Argument == "RebindAndNavigate")
        {
            grdLectures.MasterTableView.SortExpressions.Clear();
            grdLectures.MasterTableView.GroupByExpressions.Clear();
            grdLectures.MasterTableView.CurrentPageIndex = grdLectures.MasterTableView.PageCount - 1;
            grdLectures.Rebind();
        }
Tsvetoslav
Telerik team
 answered on 10 Feb 2012
2 answers
268 views
I have a grid view in Telerik ajax panel 
I want help to get refresh after certain time , also I want when user insert enter a value from text box with in the same page of grid view , the grid view get refresh immediately rather then after time out
Tsvetoslav
Telerik team
 answered on 10 Feb 2012
1 answer
89 views
Is it possible within the Telerik Chart to return the intersection of 2 or more lines?
Peshito
Telerik team
 answered on 10 Feb 2012
1 answer
191 views
Hi,
I am not able to find the each control id from multiple RadDockLayout controls in my page.I have to get all id's of RadDock control which is in different RadDockLayout and i have to get ordinal position of each RadDock information then i need to save in database. I have below the code.
      <telerik:RadDockLayout ID="RDLOccurrence" runat="server">
                    <telerik:RadDockZone ID="RDZOccurrence" runat="server" MinHeight="100" Width="350" 
                        BorderStyle="None">
                        <telerik:RadDock ID="RDOccurrence" runat="server" Height="200" >                        
                              </telerik:RadDock>
                    </telerik:RadDockZone>
                       <telerik:RadDockZone ID="RDZReserveAndPaymentInformation" runat="server" MinHeight="100" Width="350"
                        BorderStyle="None">
                        <telerik:RadDock ID="RDReserveAndPaymentInformation" runat="server" Height="200px" >
                            </telerik:RadDock>
                    </telerik:RadDockZone>
                       <telerik:RadDockZone ID="RDZAgentInformation" runat="server" MinHeight="100" Width="350"
                        BorderStyle="None">
                        <telerik:RadDock ID="RDAgentInformation" runat="server" Height="200px">
                           
                          </telerik:RadDock>
                    </telerik:RadDockZone>
                </telerik:RadDockLayout>


Please do need full help for me to find the each of RadDock id,Ordinal Position in Vb.net code.

Thanks,
Rajesh
Slav
Telerik team
 answered on 10 Feb 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
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
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
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
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?