Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
98 views
Does anyone knows if there is a problem with skinning the SiteMap? I have simple page

<%

@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="Default" %>

 

<!

 

DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

 

<

 

html xmlns="http://www.w3.org/1999/xhtml">

 

<

 

head runat="server">

 

 

<title></title>

 

 

<telerik:RadStyleSheetManager id="RadStyleSheetManager1" runat="server" />

 

</

 

head>

 

<

 

body>

 

 

<form id="form1" runat="server">

 

 

<telerik:RadScriptManager ID="RadScriptManager1" runat="server">

 

 

<Scripts>

 

 

<asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.Core.js" />

 

 

<asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.jQuery.js" />

 

 

</Scripts>

 

 

</telerik:RadScriptManager>

 

 

<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">

 

 

</telerik:RadAjaxManager>

 

 

 

<telerik:RadSkinManager ID="RadSkinManager1" Runat="server" Skin="Black"

 

 

ShowChooser="True">

 

 

<TargetControls>

 

 

<telerik:TargetControl ControlID="RadSiteMap1" />

 

 

</TargetControls>

 

 

</telerik:RadSkinManager>

 

 

<div >

 

 

<telerik:RadMenu ID="RadMenu1" runat="server"

 

 

DataSourceID="RadSiteMapDataSource1"

 

 

style="top: 0px; left: 0px; height: 16px; width: 773px">

 

 

</telerik:RadMenu>

 

 

 

<telerik:RadToolBar ID="RadToolBar1" runat="server"

 

 

DataSourceID="RadSiteMapDataSource1">

 

 

</telerik:RadToolBar>

 

 

<telerik:RadSiteMap ID="RadSiteMap1" Runat="server"

 

 

DataSourceID="RadSiteMapDataSource1" ShowNodeLines="True" >

 

 

</telerik:RadSiteMap>

 

 

<telerik:RadSiteMapDataSource ID="RadSiteMapDataSource1" runat="server" ShowStartingNode="false" SiteMapFile="~/Web.sitemap"/>

 

 

</div>

 

 

</form>

 

</

 

body>

 

</

 

html>

 

 

 

 

 

The black skin selected seems to be working on the Menu and the Toolbar controls, but for the sitemap it does not. At least it does not work the same as on Telerik's demo site.

 

Does anyone know what am I missing or is it a bug, or what?

Genady Sergeev
Telerik team
 answered on 09 Mar 2010
6 answers
159 views
Is there some way I can control width and height of the Editor on a publish page ?



Stanimir
Telerik team
 answered on 09 Mar 2010
1 answer
89 views
How can I access RadGrid's edit form item's from private function ?

Normally we can access RadGrid edit form items in RadGrid1_ItemCreated  by writing e.item.griditemtype.edititem

Any suggestion?
Thank you.
Veli
Telerik team
 answered on 09 Mar 2010
1 answer
371 views
Hi, is there a good way to call a javascript method after the Captcha check is validated?

Im trying to add the captcha to a blog comment module. The module uses jquery to post the comment.

Thx.
Anders
Pero
Telerik team
 answered on 09 Mar 2010
2 answers
175 views

Hi


I Have Problem For Export Grid By Javascript Code . My RadGrid 100% RTL . 

 

 

 <telerik:RadCodeBlock ID="RadCodeBlock1" runat="server">  
        <script language="javascript">  
            var GrdPersons;  
            //  
            function GetGridObject(sender, eventArgs) {  
                GrdPersons = sender;  
                GrdPersons.get_masterTableView().hideFilterItem();  
            }  
            //  
            function HideFilter() {  
                GrdPersons.get_masterTableView().hideFilterItem();  
            }  
            //  
            function ShowFilter() {  
                GrdPersons.get_masterTableView().showFilterItem();  
            }  
            function ExportToExcel() {  
                GrdPersons.get_masterTableView().exportToExcel('RadGridExport.xls');  
            }  
            //  
            function ExportToWord() {  
                GrdPersons.get_masterTableView().exportToWord('RadGridExport.rtf');  
            }  
</script> 

 

My RadGrid Name Is : GrdPersons .

When I Click On Button For Export Shown Loading Panel And Dont Any Other Work

Please Help Me

Ali Kolahdoozan
Top achievements
Rank 2
 answered on 09 Mar 2010
1 answer
151 views
I have the following structure and am getting an odd behavior.

 <telerik:RadAjaxLoadingPanel id="lpCTC" Runat="server" Transparency="30" BackColor="#E4E4E4"><asp:Image id="Image1" runat="server" AlternateText="Loading..." BorderWidth="0px" ImageUrl="~/global/images/loading2.gif" style="margin-top:50px;"></asp:Image></telerik:RadAjaxLoadingPanel> 
    <asp:Panel id="pnlCTC" runat="Server">  
<telerik:radcombobox id="rcProcessConnection" runat="server" Skin="Windows7"  AutoPostBack="true" CausesValidation="false" ></telerik:radcombobox> 
<asp:Label id="Label1" runat="Server" /> 
</asp:Panel> 
<Asp:Button id="Button1" runat="Server" Text="Save" /> 
 
     

I use an Ajax Manager and have the following settings in code behind:

MyAjaxManager.AjaxSettings.AddAjaxSetting(Button1, pnlCTC, lpCTC)  
MyAjaxManager.AjaxSettings.AddAjaxSetting(rcProcessConnection, pnlCTC) 

I want the following behavior.. When the Button is clicked, a loading panel is displayed over the entire content and some processing occurs. When the Combo is selected, the label is updated through Ajax, without a loading panel.

What is happening is, the button and loading panel work fine. However, the combo selection causes the screen to "blink". A normal page refresh doesn't occur, so I know an Ajax update is occuring, however, this blink should not happen. I believe this is being caused because the panel is ajaxified by both an external control (the button), as well as an internal control (the combobox).

This is actually a stripped out example. I have many more controls than just the combo box and lable inside the panel, so I can't simply ajaxify the label with the combo box.

I tried adding a seperate inner panel inside of the outer "pnlCTC", and ajaxified that using the combo box:

 <telerik:RadAjaxLoadingPanel id="lpCTC" Runat="server" Transparency="30" BackColor="#E4E4E4"><asp:Image id="Image1" runat="server" AlternateText="Loading..." BorderWidth="0px" ImageUrl="~/global/images/loading2.gif" style="margin-top:50px;"></asp:Image></telerik:RadAjaxLoadingPanel> 
    <asp:Panel id="pnlCTC" runat="Server">  
<asp:Panel id="pnlInner" runat="Server">  
<telerik:radcombobox id="rcProcessConnection" runat="server" Skin="Windows7"  AutoPostBack="true" CausesValidation="false" ></telerik:radcombobox> 
<asp:Label id="Label1" runat="Server" /> 
</asp:Panel> 
</asp:Panel> 
<Asp:Button id="Button1" runat="Server" Text="Save" /> 

MyAjaxManager.AjaxSettings.AddAjaxSetting(Button1, pnlCTC, lpCTC)  
MyAjaxManager.AjaxSettings.AddAjaxSetting(pnlInner, pnlInner) 

However, this didn't seem to make any difference.

Is there a way around this issue?

Martin
Telerik team
 answered on 09 Mar 2010
5 answers
105 views
I have problem with child grid view. when i click on [+] in grid view the record is showing properly .. but after clicking [-]
again [+] at that time first row disapper with childgrid view. it is only happen with first row.
rest of the rows are working properly.

Please see attached file.

Please let me know.

thanks in advance.

Nit

Pavlina
Telerik team
 answered on 09 Mar 2010
0 answers
95 views
Here be dragons. Thread can be deleted! Thanks.
Mallory
Top achievements
Rank 1
 asked on 09 Mar 2010
1 answer
197 views
Hi,

I'm trying to add Telerik.Web.UI.WebResource.axd from RadScriptManager smart tag but I couldn't find the option.
I have done the setting in the  web.config too. Following is the setting of my httpHandler.

<

 

httpHandlers>

 

<

 

remove verb="*" path="*.asmx"/>

 

<

 

add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>

 

<

 

add verb="*" path="*_AppService.axd" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>

 

<

 

add verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" validate="false"/>

 

<

 

add verb="*" path="Telerik.RadUploadProgressHandler.ashx" type="Telerik.Web.UI.Upload.RadUploadProgressHandler, Telerik.Web.UI"/>

 

<

 

add verb="*" path="Telerik.Web.UI.DialogHandler.aspx" type="Telerik.Web.UI.DialogHandler, Telerik.Web.UI, Culture=neutral, PublicKeyToken=121fae78165ba3d4"></add>

 

<

 

add verb="*" path="Telerik.Web.UI.SpellCheckHandler.axd" type="Telerik.Web.UI.SpellCheckHandler, Telerik.Web.UI, Culture=neutral, PublicKeyToken=121fae78165ba3d4"></add>

 

<

 

add verb="*" path="ChartImage.axd" type="Telerik.Web.UI.ChartHttpHandler, Telerik.Web.UI, Culture=neutral, PublicKeyToken=121fae78165ba3d4" validate="false"/>

 

<

 

add path="Telerik.Web.UI.WebResource.axd" verb="*" type="Telerik.Web.UI.WebResource, Telerik.Web.UI" validate="false"/>

 

</

 

httpHandlers>

 

Veselin Vasilev
Telerik team
 answered on 09 Mar 2010
1 answer
72 views
Hello!!

The AjaxLoadingPanel Is visible normally from ie8.

But gif images of the loading panel stop from ie6

Help Me please... Anna..

(When continuously repeats sees and the loading image moving, the actual condition which stops happens.)
Iana Tsolova
Telerik team
 answered on 09 Mar 2010
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?