Telerik Forums
UI for ASP.NET AJAX Forum
6 answers
88 views
Is there a built-in way to preload the image sprites so they don't "pop" in when an alert or something comes up?
Georgi Tunev
Telerik team
 answered on 26 Nov 2010
1 answer
40 views
i want to generate dynamic grid columns , on cell click i need to display a popup window which contain set of countrol
Princy
Top achievements
Rank 2
 answered on 26 Nov 2010
0 answers
53 views
hi,

i have created two customized asp.net buttons '<' and '>'.. this should control the navigation of the radscheduler navigation as same as the existing functionality

... is it possible..?


thanks in advance...
ganesh
Top achievements
Rank 2
 asked on 26 Nov 2010
3 answers
158 views
Hello,

Do you have some sample code to Validate the Modified data in Grid EditForm in Template Mode using pure Client side JavaScript validation?
In Add form the JS works fine as the controls are visible and directly accessible using <% controlName.ClientID %> but would like to have the validation in Update mode?

Thanks,
Sanjay
Tsvetina
Telerik team
 answered on 26 Nov 2010
3 answers
157 views
Hi -

 I have a radcombobox with a radtreeview inside it (using itemtemplate). I want to load on demand. How do i do this? Has any one done it, or has an example, or an idea on how to go abt this? appreciate it

thanks
Veronica
Telerik team
 answered on 26 Nov 2010
1 answer
73 views
Hi,

I'm using sliding panes and as expected the text show differently on IE vs Firefox and Chrome.

I came across this webpage, with vertical text on all browsers, maybe it can be included to fix this issue?

http://snook.ca/archives/html_and_css/css-text-rotation

Thanks!
Bozhidar
Telerik team
 answered on 26 Nov 2010
2 answers
99 views
Hello
I am facing a problem in RadEditor. I am attaching the image for the problem. 
I have a RadGrid then inside it I have a <DetailTable> tag then inside this I have <EditFormSettings> tag inside this I have <FormTemplate> then I have my RadEditor.

This is occuring only first time in IE browser only.
Mona
Top achievements
Rank 1
 answered on 26 Nov 2010
1 answer
107 views
Hi,

I am trying to implement an advanced Edit/Insert form.  I used your example on this website from the demos.  I can set Custom Attibutes with no problem so that they appear on the form, but getting them to save in an insert or edit is not working.  When I change these values, I can see them in a Javascript Debugger correctly that the attributes are set with my new value. 

So, when I click the Advanced Form to save the changes and and in the _saveClicked handler, it calls this._scheduler.updateAppointment(apt), the appointment passed in "apt" has my custom attributes.  However, when it goes to do the postback, the appointment returned from this._getSerializableAppointment(j), does not have any Custom Attributes.  It appears they are not set.

So, when I try to access e.ModifiedAppointment.Attributes["MyAttibute"] from the below method
protected void RadScheduler1_AppointmentDataBound(object sender, SchedulerEventArgs e)

It is never set with the updated value.

What I am missing? If I just add Custom Attributes to the scheduler 
and do not create a separate Advanced Form control, I can see the update value in 
e.ModifiedAppointment.Attributes["MyAttibute"].

Thanks in advance.  -John

        if (this._isInsert)
            this._scheduler.insertAppointment(apt);
        else
            his._scheduler.updateAppointment

        if (this._isInsert)
            this._scheduler.insertAppointment(apt);
        else
            this._scheduler.updateAppointment(apt);
        if (this._isInsert)
            this._scheduler.insertAppointment(apt);
        else
          
        if (this._isInsert)
            this._scheduler.insertAppointment(apt);
        else
            this._scheduler.updateAppointment(apt);
 t_scheduler.updateAppointment(ap
Veronica
Telerik team
 answered on 26 Nov 2010
1 answer
85 views
Hello,

I participated at the following post in the asp.net forum, concerning Telerik RadCalendar

http://forums.asp.net/t/1625777.aspx

To my surprise, the solution is that the poster simply avoided RadCalendar.

Is it a known issue, RadCalendar and UpdatePanel?

Kind Regards,
O.D.
Tsvetina
Telerik team
 answered on 26 Nov 2010
1 answer
115 views
Hi,
in my page I have a multipage with 2 page, and for each page I have 2 list related by code, the second one list has a radpager conteined only one slider field. In runtime when I switch from first tab to second tab and click on first list to load the second one I receive a client error in IE:
A control is already associated with the element.

In others word I can't use 2 pager (slider) in the same page.

Thanks,
Marco

<telerik:RadTabStrip runat="server" ID="RadTabStrip1"
    Skin="Office2007" MultiPageID="RadMultiPage1" EnableEmbeddedSkins="False"
            >
    <Tabs>
        <telerik:RadTab Text="Noleggio" >
        </telerik:RadTab>
        <telerik:RadTab Text="Vendita" >
        </telerik:RadTab>                   
    </Tabs>
</telerik:RadTabStrip>
<telerik:RadMultiPage runat="server" ID="RadMultiPage1"  Height="680px"
    Width="1005px" CssClass="multiPage"  >
    <telerik:RadPageView runat="server" ID="RadPageView1"
        CssClass="noleggioHwPageView" >
 
        <telerik:RadAjaxLoadingPanel ID="ldPnlNoleggioHW" runat="server" Skin="Office2007">
        </telerik:RadAjaxLoadingPanel>
         
         
        <telerik:RadListView ID="lstCategorieNoleggio" runat="server" DataSourceID="XmlDataSource1"
            ItemPlaceholderID="PlaceHolder2" AllowPaging="false" OnSelectedIndexChanged="lstCategorieNoleggio_SelectedIndexChanged">
            <LayoutTemplate>
                <div class="NoleggioHwbar" >
                    <asp:Panel ID="NoleggioPanel" runat="server">
                        <div class="NoleggioHw">
                            <asp:PlaceHolder ID="PlaceHolder2" runat="server"></asp:PlaceHolder>
                        </div>            
                        </asp:Panel>
                </div>
            </LayoutTemplate>
            <ItemTemplate>
                <div class="category">
                    <h3>
                        <asp:Label ID="Label1" runat="server" Text='<%# Bind("titolo") %>'/>
                        <asp:HiddenField ID="Label2" runat="server" Value='<%# Bind("categoriaid") %>'/>
                    </h3>
                     <asp:ImageButton ID="ImageButton2" runat="server" ImageUrl='<%# "../" + Eval("image") %>'
                                    AlternateText='<%# Eval("descrizione") %>' CommandName="Select" />
                    <p>
                        <%# Eval("descrizione")%>
                    </p>
               </div>
            </ItemTemplate>
            <SelectedItemTemplate>
                <div class="selected">
                    <h3>
                        <%# Eval("titolo")%>
                    </h3>
                    <asp:Image ID="SushiImage2" runat="server" AlternateText='<%# Eval("descrizione") %>'
                        Width="140px" ImageUrl='<%# "../" + Eval("image") %>' />
                    <p>
                        <%# Eval("descrizione")%>
                    </p>
                </div>
            </SelectedItemTemplate>
        </telerik:RadListView>
         
            <asp:Panel ID="pnlDettaglioNoleggio" runat="server" Visible="false">
            <telerik:RadListView ID="lstProductNoleggio" runat="server"
                ItemPlaceholderID="ProductsNoleggioContainer" OnDataBound="lstProduct_DataBound"
                AllowPaging="true" DataKeyNames="IDProdotto" PageSize="4"
                OnNeedDataSource="lstProductNoleggio_NeedDataSource">
                <LayoutTemplate>
                        <asp:PlaceHolder ID="ProductsNoleggioContainer" runat="server"></asp:PlaceHolder>
 
                        <table cellpadding="0" cellspacing="0" border="0" width="100%;" style="clear: both;">
                            <tr>
                                <td align="left">
                                    <telerik:RadDataPager ID="RadDataPagerNoleggio" Skin="Vista"  runat="server" PagedControlID="lstProductNoleggio"
                                        PageSize="4">
                                        <Fields>
                                             <telerik:RadDataPagerSliderField  SliderIncreaseText="Più" SliderDecreaseText="Meno"
                                              SliderDragText="Trascina" />                                               
                                        </Fields>
                                    </telerik:RadDataPager>
                                </td>
                            </tr>
                        </table>
                </LayoutTemplate>
                <ItemTemplate>
                    <table  style="float:left; width: 478px; height: 150px; background-color:White; margin:2px 2px 2px 2px">
                        <tr>                                       
                            <td>                                       
                                <div class="photo-container-noleggio">
                                    <asp:Image ID="imgProdottoNoleggio" runat="server" AlternateText='<%# Eval("NomeProdotto") %>'
                                        Width="100px" Height="100px" ImageUrl='<%# "../" + Eval("FotoPath") %>' />
                                </div>
                            </td>
                            <td>
                                <div class="detailsNoleggio">                                       
                                    <div class="data-container-noleggio">
                                        <ul>
                                            <li>
                                               Marca: <label><%#Eval("Marca")%></label>
                                            </li>
                                            <li>
                                                Modello: <label><%#Eval("NomeProdotto")%></label>
                                            </li>
                                            <li>
                                                Canone mensile: <label> <%#((decimal) Eval("PrezzoNoleggio")).ToString("N2") %></label>
                                            </li>
                                            <li>
                                               Modello: <label><%#Eval("Descrizione")%></label>
                                            </li>
                                        </ul>
                                    </div>
                                </div>
                            </td>
                            <td valign="top">
                                <div class="document">          
                                     <asp:HyperLink Text=""  ID="ImageDocN" runat="server" AlternateText="" Visible='<%# Eval("DocumentPath").ToString() != ""%>'
                                                SkinID="ImgPdf32"  NavigateUrl='<%# Eval("DocumentPath").ToString() == "" ? "#" : "../" + Eval("DocumentPath") %>' />
                                </div>
                            </td>                                   
                        </tr>                               
                    </table>
 
                </ItemTemplate>
            </telerik:RadListView>
         
        </asp:Panel>
         
          
    </telerik:RadPageView>
                    <telerik:RadPageView runat="server" ID="RadPageView2"
        CssClass="venditaHwPageView" meta:resourcekey="RadPageView2Resource1">
         
        <telerik:RadAjaxLoadingPanel ID="ldPnlVenditaHW" runat="server" Skin="Office2007">
        </telerik:RadAjaxLoadingPanel>
        <telerik:RadListView ID="lstCategorieVendita" runat="server" DataSourceID="XmlDataSource1"
            ItemPlaceholderID="PlaceHolder3" AllowPaging="false" OnSelectedIndexChanged="lstCategorieVendita_SelectedIndexChanged">
            <LayoutTemplate>
                <div class="NoleggioHwbar" >
                    <asp:Panel ID="VenditaPanel" runat="server">
                        <div class="NoleggioHw">
                            <asp:PlaceHolder ID="PlaceHolder3" runat="server"></asp:PlaceHolder>
                        </div>            
                        </asp:Panel>
                </div>
            </LayoutTemplate>
            <ItemTemplate>
                <div class="category">
                    <h3>
                        <asp:Label ID="Label4" runat="server" Text='<%# Bind("titolo") %>'/>
                        <asp:HiddenField ID="Label5" runat="server" Value='<%# Bind("categoriaid") %>'/>
                    </h3>
                     <asp:ImageButton ID="ImageButton5" runat="server" ImageUrl='<%# "../" + Eval("image") %>'
                                    AlternateText='<%# Eval("descrizione") %>' CommandName="Select" />
                    <p>
                        <%# Eval("descrizione")%>
                    </p>
               </div>
            </ItemTemplate>
            <SelectedItemTemplate>
                <div class="selected">
                    <h3>
                        <%# Eval("titolo")%>
                    </h3>
                    <asp:Image ID="SushiImage3" runat="server" AlternateText='<%# Eval("descrizione") %>'
                        Width="140px" ImageUrl='<%# "../" + Eval("image") %>' />
                    <p>
                        <%# Eval("descrizione")%>
                    </p>
                </div>
            </SelectedItemTemplate>
        </telerik:RadListView>
         
            <asp:Panel ID="pnlDettaglioVendite"  runat="server" Visible="false">
            <telerik:RadListView ID="lstProductVendita" runat="server"
                ItemPlaceholderID="ProductsVenditaContainer"
                AllowPaging="true" DataKeyNames="IDProdotto" PageSize="4"
                OnNeedDataSource="lstProductVendita_NeedDataSource">
                <LayoutTemplate>
                        <table cellpadding="0" cellspacing="0" border="0" width="100%;" style="clear: both;">
                            <tr>
                                <td>
                                    <asp:PlaceHolder ID="ProductsVenditaContainer" runat="server"></asp:PlaceHolder>
                                </td>
                            </tr>
                            <tr>
                                <td valign="bottom">
                                    <telerik:RadDataPager  ID="RadDataPagerVendite" Skin="Vista"  runat="server" PagedControlID="lstProductVendita"
                                        PageSize="4">
                                        <Fields>
                                             <telerik:RadDataPagerSliderField  SliderIncreaseText="Più" SliderDecreaseText="Meno"
                                              SliderDragText="Trascina" />    
                                        </Fields>
                                    </telerik:RadDataPager>
                                </td>
                            </tr>
                        </table>
                </LayoutTemplate>
                <ItemTemplate>
                    <table  style="float:left; width: 478px; height: 150px; background-color:White; margin:2px 2px 2px 2px">
                        <tr>                                       
                            <td>                                       
                                <div class="photo-container-noleggio">
                                    <asp:Image ID="imgProdottoVendita" runat="server" AlternateText='<%# Eval("NomeProdotto") %>'
                                        Width="100px" Height="100px" ImageUrl='<%# "../" + Eval("FotoPath") %>' />
                                </div>
                            </td>
                            <td>
                                <div class="detailsNoleggio">                                       
                                    <div class="data-container-noleggio">
                                        <ul>
                                            <li>
                                               Marca: <label><%#Eval("Marca")%></label>
                                            </li>
                                            <li>
                                                Modello: <label><%#Eval("NomeProdotto")%></label>
                                            </li>
                                            <li>
                                                Canone mensile: <label> <%#((decimal) Eval("PrezzoVendita")).ToString("N2") %></label>
                                            </li>
                                            <li>
                                               Modello: <label><%#Eval("Descrizione")%></label>
                                            </li>
                                        </ul>
                                    </div>
                                </div>
                            </td>     
                            <td valign="top">
                                <div class="document">          
                                     <asp:HyperLink Text=""  ID="ImageDocV" runat="server" AlternateText="" Visible='<%# Eval("DocumentPath").ToString() != ""%>'
                                                SkinID="ImgPdf32"  NavigateUrl='<%# Eval("DocumentPath").ToString() == "" ? "#" : "../" + Eval("DocumentPath") %>' />
                                </div>
                            </td>                                                                      
                        </tr>                               
                    </table>
 
                </ItemTemplate>
            </telerik:RadListView>
         
        </asp:Panel>
         
    </telerik:RadPageView>
 
</telerik:RadMultiPage>
Radoslav
Telerik team
 answered on 26 Nov 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?