Telerik Forums
UI for ASP.NET AJAX Forum
0 answers
117 views
I need to be able to select the null value to a RadComboBox bind to an EntityDataSource,

in WPF
there is a ClearSelectionButtonVisibility, what is the alternative in ASP.NET AJAX? without doing it manually

thanks in advance
Alberto
Top achievements
Rank 1
 asked on 21 Dec 2010
1 answer
48 views
i am using radtreeview in my page. while double clicking the tree node i want to open the rad window. before that i want  to  display ajax loading panel.
how can i do this. help me.
thanks .
priya.
Shinu
Top achievements
Rank 2
 answered on 21 Dec 2010
9 answers
250 views
I hope this is the right forum topic...

I'm having a situation where Telerik is generating a URL to a javascript file which is cached at the client.  When we release a new build the same URL is produced but the content of the javascript is different.  However, because the client is caching the file (or the URL, I should say) the correct javascript content isn't being downloaded.

Our environment is as such:

Telerik version 10.2.7.13
Windows Server 2003
.Net Framework 4.0
ASP.NET Forms

I don't have anything else to go one from here to troubleshoot the problem any further.  We've search for caching issues within ASP.NET, IIS, etc...  The way we found the problem was by javascript failing on an unhandled exception.  The javascript is from a WebResource.axd... We grabbed the content of the javascript as well as the URL, clear the browser cache and requested the URL, again.  We found the URL being generated were Identical but the javascript content was different.  Any help getting around this issue is greatly appreciated.  We've narrowed it down to Telerik's scripting manager generating these URLs but we don't know how to make it generate all new keys in the case of a new release of our code.

Any help on this matter is very much appreciated.

Regards,
-vic
Simon
Telerik team
 answered on 21 Dec 2010
1 answer
96 views
Can you add a property to the RadScriptBlock such that at render time we can specify WHERE the script tag renders?

I'd like to send my scripts to the bottom of the page on Render...
Radoslav
Telerik team
 answered on 21 Dec 2010
1 answer
73 views
I have a typical asp.net page where I have rad menu and rad grid. Also I have 2 drop down controls. When a drop down is selected, I have jquery load function that loads different aspx page (lets call a.aspx) in a empty div on demand. This aspx page is a form with its own submit button to save/update data.
After this aspx page is loaded, if I go to menu and select any menu item, it does not take me to the menu link, it takes me to a.aspx page. Is this happening due to some bug in rad ajax.

Please help.
Thanks,
-Soven
Iana Tsolova
Telerik team
 answered on 21 Dec 2010
1 answer
51 views
Hi i've been running VS2010 and S2008 together and they were working fine with the telerik extension. Recently i had to re-format my computer and I'm doing a fresh install, the extension is working fine in VS2010 but its not showing up in my VS2008. Any ideas?
Andrey
Telerik team
 answered on 21 Dec 2010
2 answers
106 views
I have a grid with 1 master table and 1 details table.  On my development machine when I expand the detail section then click the 'add a new record' button, the edit section appears and I can add some data, then save.  After uploading to  a hosted environment, clicking 'add new record' does nothing !  I get the ajax animated icon, but no edit section appears so I cant input any data.

I have a similar grid on another page and it works perfectly.  Can anyone help ?  this has now gone live but it wont work.  Am I missing something ?


<asp:Panel ID="PanelTypes" runat="server" GroupingText="Banners" Width="100%" >
            <telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server" IsSticky="false" Height="75px" Width="75px" Transparency="25">
                            <img alt="Loading..." src='<%= RadAjaxLoadingPanel.GetWebResourceUrl(Page, "Telerik.Web.UI.Skins.Default.Ajax.loading.gif") %>' style="border:0;" /></telerik:RadAjaxLoadingPanel>
                            <telerik:RadAjaxPanel ID="RadAjaxPanel1" runat="server"
                ClientEvents-OnRequestStart="conditionalPostback" Width="100%">
                            <telerik:RadGrid ID="RadGridBannerImages" runat="server"
                                GridLines="None" AllowSorting="True"
                                ShowStatusBar="True" Skin="Vista"
                                ondeletecommand="RadGridBannerImages_DeleteCommand"
                                oninsertcommand="RadGridBannerImages_InsertCommand"
                                onneeddatasource="RadGridBannerImages_NeedDataSource"
                                onupdatecommand="RadGridBannerImages_UpdateCommand"
                                Width="1190px" onitemdatabound="RadGridBannerImages_ItemDataBound"
                                AllowPaging="True" PageSize="5" AutoGenerateColumns="False" Height="100%"
                                    OnDetailTableDataBind="RadGridBannerImages_DetailTableDataBind"
                                    onitemcommand="RadGridBannerImages_ItemCommand" HorizontalAlign="Left"
                                    onitemcreated="RadGridBannerImages_ItemCreated">
                                <HeaderContextMenu Skin="Vista" EnableTheming="True">
                                <CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation>
                                </HeaderContextMenu>
                                <PagerStyle Mode="NextPrevAndNumeric" AlwaysVisible="True" />
                                <HeaderStyle  Wrap="true" />
 
                                <MasterTableView DataKeyNames="ID" CommandItemDisplay="Top" OverrideDataSourceControlSorting="True"
                                    EditMode="InPlace" UseAllDataFields="True" Name="BannerName">
                                    <detailtables>
                                        <telerik:GridTableView runat="server" DataKeyNames="ID" Name="BannerImages" Width="100%" CommandItemDisplay="Top" ShowFooter="True">
                                         
                                        <RowIndicatorColumn>
                                                <HeaderStyle Width="20px" />
                                            </RowIndicatorColumn>
                                            <ExpandCollapseColumn>
                                                <HeaderStyle Width="20px" />
                                            </ExpandCollapseColumn>
                                            <Columns>
                                            <telerik:GridEditCommandColumn ButtonType="ImageButton" UniqueName="EditCommandBannerImage">
                                            <HeaderStyle Width="20px" />
                                            </telerik:GridEditCommandColumn>
                                            <telerik:GridBoundColumn DataField="ID" DataType="System.Int32" HeaderText="ID"
                                            ReadOnly="true" Visible="false" SortExpression="ID" UniqueName="ID">
                                            </telerik:GridBoundColumn>
                                             
                                            <telerik:GridTemplateColumn UniqueName="PanelNumber" HeaderText="Panel Location"  SortExpression="Position">
                                                <ItemTemplate>
                                                    <%#DataBinder.Eval(Container.DataItem, "PanelNumber")%>
                                                </ItemTemplate>
                                                <EditItemTemplate>
                                                    <telerik:RadComboBox ID="RadComboBoxPanelNumber" Runat="server" Skin="Vista">
                                                    <Items>
                                                        <telerik:RadComboBoxItem runat="server" Text="Left" Value="1" />
                                                        <telerik:RadComboBoxItem runat="server" Text="Center" Value="2" />
                                                        <telerik:RadComboBoxItem runat="server" Text="Right" Value="3" />
                                                         
                                                    </Items>
                                                </telerik:RadComboBox>
                                                </EditItemTemplate>
                                            </telerik:GridTemplateColumn>
                                             
                                             
                                             
                                           <telerik:GridTemplateColumn UniqueName="ImageNumber" HeaderText="Image Number"  SortExpression="Position">
                                                <ItemTemplate>
                                                    <%#DataBinder.Eval(Container.DataItem, "ImageNumber")%>
                                                </ItemTemplate>
                                                <EditItemTemplate>
                                                    <telerik:RadComboBox ID="RadComboBoxImageNumber" Runat="server" Skin="Vista">
                                                    <Items>
                                                        <telerik:RadComboBoxItem runat="server" Text="1" Value="1" />
                                                        <telerik:RadComboBoxItem runat="server" Text="2" Value="2" />
                                                        <telerik:RadComboBoxItem runat="server" Text="3" Value="3" />
                                                        <telerik:RadComboBoxItem runat="server" Text="4" Value="4" />
                                                        <telerik:RadComboBoxItem runat="server" Text="5" Value="5" />
                                                        <telerik:RadComboBoxItem runat="server" Text="6" Value="6" />
                                                        <telerik:RadComboBoxItem runat="server" Text="7" Value="7" />
                                                        <telerik:RadComboBoxItem runat="server" Text="8" Value="8" />
                                                        <telerik:RadComboBoxItem runat="server" Text="9" Value="9" />
                                                        <telerik:RadComboBoxItem runat="server" Text="10" Value="10" />
                                                         
                                                    </Items>
                                                </telerik:RadComboBox>
                                                </EditItemTemplate>
                                            </telerik:GridTemplateColumn>
                                                                                                                     
                                             
                                              <telerik:GridTemplateColumn HeaderText="Image File" UniqueName="ImageUpload">
                                            <ItemTemplate>
                                            <asp:Image ID="Image1" runat="server" ImageUrl='<%# Eval("ImageURL") %>' Height="162" Width="207"/>
                                            </ItemTemplate>
                                            <EditItemTemplate>
                                                    <telerik:RadUpload ID="RadUploadImage" runat="server"
                                                    InitialFileInputsCount="1" MaxFileInputsCount="1"
                                                    ControlObjectsVisibility="None" MaxFileSize="100000"
                                                    AllowedFileExtensions=".jpg,.gif,.jpeg,.png" TargetFolder="~/Uploads"/>
                                            </EditItemTemplate>
                                            </telerik:GridTemplateColumn>
                                             
                                             
                                             
                                            <telerik:GridButtonColumn ConfirmText="Delete this image ?" ButtonType="ImageButton"
                                        CommandName="Delete" Text="Delete" UniqueName="DeleteFlash">
                                        <HeaderStyle Width="20px" />
                                        <ItemStyle HorizontalAlign="Center" CssClass="MyImageButton" />
                                    </telerik:GridButtonColumn>                        
                                            </Columns>
                                             
                                            <rowindicatorcolumn>
                                                <HeaderStyle Width="20px" />
                                            </rowindicatorcolumn>
                                            <expandcollapsecolumn visible="True">
                                                <HeaderStyle Width="20px" />
                                            </expandcollapsecolumn>
                                        </telerik:GridTableView>
                                    </detailtables>
                                    <RowIndicatorColumn>
                                        <HeaderStyle Width="20px" />
                                    </RowIndicatorColumn>
                                    <ExpandCollapseColumn visible="True">
                                        <HeaderStyle Width="20px" />
                                    </ExpandCollapseColumn>
                                    <Columns>
                                                                                 
                                        <telerik:GridEditCommandColumn ButtonType="ImageButton" UniqueName="EditCommandBannerName">
                                        <HeaderStyle Width="20px" />
                                        </telerik:GridEditCommandColumn>                               
                                         
                                                                                
                                         
                                        <telerik:GridBoundColumn UniqueName="BannerName" DataField="BannerName" HeaderText="Banner Name" />
                                                            
                                                                           
                                         
                                        <telerik:GridButtonColumn ConfirmText="Delete this banner ?" ButtonType="ImageButton"
                                        CommandName="Delete" Text="Delete" UniqueName="DeleteColumn1">
                                        <HeaderStyle Width="20px" />
                                        <ItemStyle HorizontalAlign="Center" CssClass="MyImageButton" />
                                    </telerik:GridButtonColumn>
 
 
 
                                    </Columns>
                                     
 
                                </MasterTableView>
                                 
                                <FilterMenu EnableTheming="True">
                                    <CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation>
                                </FilterMenu>
                            </telerik:RadGrid>
                            </telerik:RadAjaxPanel>
 
        </asp:Panel>
Tsvetina
Telerik team
 answered on 21 Dec 2010
7 answers
261 views
How can the command toolbar be set to show only the refresh button ?  I dont need the insert option.
Princy
Top achievements
Rank 2
 answered on 21 Dec 2010
7 answers
490 views
I implemented the context menu for the treeview and everything works fine.  No my client wants me to show the context menu when hovering vs making the user rightclick, like the HoverMenu is in the Ajax Control Toolkit


Is there another way to open the ContextMenu?   Hopefully there is a Javascript function that I can call to show it for each node.  

thanks
tommy


 
Yana
Telerik team
 answered on 21 Dec 2010
6 answers
361 views

I am using a RadPanelBar -- I am currently hiding the expand and collapse arrows using the following code:

.rpExpandHandle
{
    display: none!important;
}
 .rpCollapseHandle
{
    display: none!important;
}


This works great -- except now I need to add another RadPanelBar to the same page where I need to show the expand and collapse arrows.

I read in the following help file that if you set the imageUrl and imagePosition to right, then it will replace the image.  Unfortunately I can't get that to work.

Here's the help link:

http://www.telerik.com/help/aspnet-ajax/panel_appearanceitemimages.html

Here's my code sample:

<telerik:RadPanelBar runat="server" ID="SupportPanelBar" Width="150" >
                        <ExpandAnimation Type="None"></ExpandAnimation>
                        <CollapseAnimation Type="None"></CollapseAnimation>
                        <Items>                         
                            <telerik:RadPanelItem Text="TeamSideline" Expanded="True" PreventCollapse="true" NavigateUrl="/Home.aspx" ImagePosition="Right" ImageUrl="~/img/icon_delete_active.png" SelectedImageUrl="~/img/icon_delete_active.png">
                                <Items>
                                    <telerik:RadPanelItem Text="Support Menu" NavigateUrl="/Support/Home.aspx" BackColor="#D7D8D8"  />                                    
                                    <telerik:RadPanelItem Text="Public Downloads" NavigateUrl="/TsMoreInfo.aspx" BackColor="#D7D8D8" />                                                                        
                                </Items>
                            </telerik:RadPanelItem>                                                                                
                        </Items>
                    </telerik:RadPanelBar>

And the output is attached.  I am using the telerik dll -- 2010.3.1109.40

Your help is appreciated.

Thanks,
Todd.




Yana
Telerik team
 answered on 21 Dec 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Nakul
Top achievements
Rank 1
Rina
Top achievements
Rank 1
Mukesh
Top achievements
Rank 1
Ruksana
Top achievements
Rank 1
Rakesh
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Nakul
Top achievements
Rank 1
Rina
Top achievements
Rank 1
Mukesh
Top achievements
Rank 1
Ruksana
Top achievements
Rank 1
Rakesh
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?