Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
122 views
Hi, i have a strange behaviors here :

When i put an ajax manager proxy in my content page,
my Asp:Table, lower on the page, have all his <asp:TableCell> content wrapped.

For example  without radajaxmanager proxy  i have my cell

---------------------------------------------------------------------------
|   Name : Franck                Email : Toto@titi.com                |
---------------------------------------------------------------------------


And when i add the radajaxmanagerproxy

---------------------------------------------------------------------------
| Name :                                                                                 |
| Franck                                                                                 |
| Email :                                                                                 |
| Toto@titi.com                                                                      |
---------------------------------------------------------------------------

And this with all my cells.
Except this problem, the radmanagerproxy is working fine.

Here the code :
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
    <telerik:RadAjaxManagerProxy ID="RadAjaxManagerProxy1" runat="server">
        <AjaxSettings>
            <telerik:AjaxSetting AjaxControlID="ListesBR">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="ListesBR" />
                    <telerik:AjaxUpdatedControl ControlID="ListesBU" />
                </UpdatedControls>
            </telerik:AjaxSetting>
            <telerik:AjaxSetting AjaxControlID="RadListUsers">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="RadListUsers" />
                    <telerik:AjaxUpdatedControl ControlID="SupprimerUser_Btn" />
                    <telerik:AjaxUpdatedControl ControlID="Blocked_CB" />
                    <telerik:AjaxUpdatedControl ControlID="Password_Input" />
                    <telerik:AjaxUpdatedControl ControlID="ConfirmPassword_Input" />
                    <telerik:AjaxUpdatedControl ControlID="ListesBR" />
                    <telerik:AjaxUpdatedControl ControlID="ListesBU" />
                    <telerik:AjaxUpdatedControl ControlID="Nom_Input" />
                    <telerik:AjaxUpdatedControl ControlID="Prenom_Input" />
                    <telerik:AjaxUpdatedControl ControlID="NouvelUser_Lbl" />
                    <telerik:AjaxUpdatedControl ControlID="InfoTable" />
                </UpdatedControls>
            </telerik:AjaxSetting>



And my Table :

             <asp:Table GridLines="None" ID="InfoTable" runat="server" Width="450px">
                    <asp:TableRow>
                        <asp:TableCell HorizontalAlign="Center" Visible="true">
                            <asp:Label ID="NouvelUser_Lbl" ForeColor="Red" runat="server">NOUVEL UTILISATEUR</asp:Label>&nbsp;
                        </asp:TableCell>
                    </asp:TableRow>
                    <asp:TableRow>
                        <asp:TableCell>&nbsp;</asp:TableCell></asp:TableRow>
                    <asp:TableRow>
                        <asp:TableCell HorizontalAlign="Left">
                            <asp:Label ID="Nom_Lbl" runat="server">Nom :</asp:Label>
                            <telerik:RadTextBox runat="server" ID="Nom_Input" Text="" Skin="Black">
                            </telerik:RadTextBox>
                            &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
                            <asp:Label ID="Prenom_Lbl" runat="server">Prénom :</asp:Label>
                            <telerik:RadTextBox ID="Prenom_Input" runat="server" Width="125px" Skin="Black">
                            </telerik:RadTextBox>
                        </asp:TableCell>
                    </asp:TableRow>
                    <asp:TableRow>
                        <asp:TableCell>&nbsp;</asp:TableCell>
                    </asp:TableRow>
                    <asp:TableRow>
                        <asp:TableCell>
                            <asp:Label ID="Label2" runat="server">Branche :</asp:Label>
                        </asp:TableCell>
                    </asp:TableRow>
                    <asp:TableRow>
                        <asp:TableCell>
                            <telerik:RadComboBox ID="ListesBR" runat="server" AllowCustomText="False" OnSelectedIndexChanged="ListesBR_SelectedIndexChanged"
                                AutoPostBack="true" Width="280px" NoWrap="true" Skin="Black">
                            </telerik:RadComboBox>
                        </asp:TableCell>
                    </asp:TableRow>
                    <asp:TableRow>
                        <asp:TableCell>&nbsp;</asp:TableCell></asp:TableRow>
                    <asp:TableRow>
                        <asp:TableCell>
                            <asp:Label ID="EntiteBU_Lbl" runat="server">Sous Branche :</asp:Label>
                        </asp:TableCell>
                    </asp:TableRow>
                    <asp:TableRow>
                        <asp:TableCell>
                            <telerik:RadComboBox ID="ListesBU" runat="server" AllowCustomText="False" Skin="Black"
                                Width="280px" NoWrap="true">
                            </telerik:RadComboBox>
                        </asp:TableCell>
                    </asp:TableRow>
                    <asp:TableRow>
                        <asp:TableCell>&nbsp;</asp:TableCell></asp:TableRow>
                    <asp:TableRow>
                        <asp:TableCell>
                            <asp:Label ID="Pass_Lbl" runat="server">Nouveau mot de passe (optionnel) :</asp:Label>
                            <telerik:RadTextBox ID="Password_Input" runat="server" Width="280px" NoWrap="true"
                                Skin="Black">
                            </telerik:RadTextBox>
                        </asp:TableCell>
                    </asp:TableRow>
                    <asp:TableRow>
                        <asp:TableCell>&nbsp;</asp:TableCell></asp:TableRow>
                    <asp:TableRow>
                        <asp:TableCell>
                            <asp:Label ID="ConfirmPass_Lbl" runat="server">Confirmer nouveau mot de passe (optionnel) :</asp:Label>
                            <telerik:RadTextBox ID="ConfirmPassword_Input" runat="server" Width="280px" NoWrap="true"
                                Skin="Black">
                            </telerik:RadTextBox>
                        </asp:TableCell>
                    </asp:TableRow>
                    <asp:TableRow>
                        <asp:TableCell>&nbsp;</asp:TableCell></asp:TableRow>
                    <asp:TableRow>
                        <asp:TableCell>
                            <asp:Label ID="Bloquer_Lbl" runat="server">Utilisateur bloqué</asp:Label>
                            <asp:CheckBox runat="server" ID="Blocked_CB" />
                        </asp:TableCell>
                    </asp:TableRow>
                    <asp:TableRow>
                        <asp:TableCell>&nbsp;</asp:TableCell></asp:TableRow>
                    <asp:TableRow>
                        <asp:TableCell>
                            <asp:Button ID="SupprimerUser_Btn" runat="server" OnClientClick="return blockConfirm('Êtes vous sur de vouloir supprimer cet utilisateur ?', event, 330, 100,'','Demande de confirmation');"
                                Text="Supprimer" />
                            &nbsp;&nbsp;&nbsp;&nbsp;<asp:Button ID="Enregistrer_Btn" runat="server" OnClick="Enregistrer_Btn_Click"
                                Text="Enregistrer" />
                        </asp:TableCell>
                    </asp:TableRow>
                </asp:Table>
Dimo
Telerik team
 answered on 13 Jul 2009
1 answer
91 views

Hi,

I am calling a radconfirm from a web page. After the user clicks on "OK or "Cancel" the radconfirm closes, the callback function gets invoked, but the focus is not returned to the control that had it before opening the radconfirm window.

I could set it by calling .focus() but I have more than 25 textboxes and I do not want to keep track of the control with the current focus. Using the standard browser confirmation windows keeps the focus were it was before opened.

Is there any possible solution for this? It forces the user to grab the mouse and click back on the page.

 

Thanks.
Fiko
Telerik team
 answered on 13 Jul 2009
4 answers
129 views
Hello Telerik Team !

I would like, throught RadCalendar, to give the ability to use the Column and Row headers as multi-selectors, but not give the ability to multi-select single days. As it, the user can select all the Mondays for example, or the whole 15th week of the year, but not the 5 march and 15 june and 6 april 2010, etc. (the user can select the 5 march individually, but not cumulated with another single day) Also, I would like that the pseudo-multi-selection that happens when a row or column header is clicked, could'nt be cumulated with a previous selection, creating a postBack.
Any ideas ?

Here is my code :
<telerik:radcalendar id="radCalSearch" runat="server"   
            enablemultiselect="false"   
            showrowheaders="true"   
            UseColumnHeadersAsSelectors="true"   
            UseRowHeadersAsSelectors="true" 
            enablenavigationanimation="false" 
            fastnavigationnextimage="~/images/btn_RadCal_FN.jpg" 
            fastnavigationprevimage="~/images/btn_RadCal_FP.jpg" 
            navigationnextimage="~/images/btn_RadCal_N.jpg" 
            navigationprevimage="~/images/btn_RadCal_P.jpg" 
            daynameformat="FirstTwoLetters" 
            onselectionchanged="radCalSearch_SelectionChanged" AutoPostBack="true">  
        <SpecialDays> 
            <telerik:RadCalendarDay Date="" Repeatable="Today">  
                <ItemStyle CssClass="radCalToday_Default" /> 
            </telerik:RadCalendarDay> 
        </SpecialDays> 
    </telerik:radcalendar> 

 Protected Sub radCalSearch_SelectionChanged(ByVal sender As ObjectByVal e As Telerik.Web.UI.Calendar.SelectedDatesEventArgs) Handles radCalSearch.SelectionChanged  
            Try 
                SetSession(TrueFalse)  
                If intSearchTabID <> -1 Then 
                    Response.Redirect(NavigateURL(intSearchTabID, False))  
                End If 
            Catch exc As Exception    'Module failed to load  
                ProcessModuleLoadException(Me, exc)  
            End Try 
        End Sub 

Sébastien
Adek
Top achievements
Rank 1
 answered on 13 Jul 2009
1 answer
137 views
Hi -

Can the RadXHPs be used to wrap web content forms in a manner similar to the RadAjaxManagerProxy? Does the RadAjaxManager still need to be included on the Master Page?

Thanks,
David
Tervel
Telerik team
 answered on 13 Jul 2009
8 answers
398 views
Hello

    I am using the  ASP.Net AJAX controls version 2008.2.1001.20

   I have problem usign the combobox ,Scroll bar for the dropdown of the comboBox is not as the same in the browser scrollbar, for all the skins it shows the scroll bar in gray color.

Earliest reply is appreciated

 Thank you



Simon
Telerik team
 answered on 13 Jul 2009
1 answer
118 views

There is a problem when I use the custom filter, along with the default Telerik filters. When we try to filter on any Integer or decimal field, there is an internal JS error in the telerik grid. If we remove the custom filters then the filters work fine as it is.

Any idea on this issues?

Yavor
Telerik team
 answered on 13 Jul 2009
1 answer
85 views
Hello, is there a property to set the resizeable of the RadWindow to false?
Shinu
Top achievements
Rank 2
 answered on 13 Jul 2009
1 answer
133 views
Hi,

I red the KB article (http://www.telerik.com/support/kb/aspnet-ajax/editor/using-the-image-and-document-managers-outside-radeditor.aspx) to use to ImageManager dialog standalone. It works great but i need more customization like disable "properties" tab in the preview section, or not display the imageeditor button.
How can I do this ?
Must I create my own custon dialog or can I use ImageManager dialog and pass it some arguments ?

Thanks and regards

Allan
Rumen
Telerik team
 answered on 13 Jul 2009
2 answers
140 views
I have a Panelbar that loads items templates on the fly.

I want to be able to have a user control that contains a panelbar as one of my potential (top level) panelbar templates.

I've tried it, but I can't get the inner panelbar to open.

Has anyone used a paenlbar as a template item?

--
Stuart
Stuart Hemming
Top achievements
Rank 2
 answered on 13 Jul 2009
3 answers
115 views
Hi All,

In my scenario, I need to enable few buttons when user selects a row in the radgrid. I need to handle it without going to server(in client side).
Once, the user selects rows from grid, I need to enable buttons . how do i do this.
Pls help.
Thanks,
ZR
Shinu
Top achievements
Rank 2
 answered on 13 Jul 2009
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?