Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
361 views
I have a Rad Toolbar Button that, when clicked, opens a popup.  Is there a way to prevent a user from double clicking?  Currently I can double click the button and it will open two windows.  Thanks.
Stacy
Top achievements
Rank 1
 answered on 29 Jul 2014
1 answer
77 views
Hi,

As per the RADEditor configuration listed in the website.

I have removed the following below from the toolsfile.xml

<classes>
        <class name="Clear Class" value="" />
        <class name="Normal" value=".ms-rteStyle-Normal" />
        <class name="Highlight" value=".ms-rteStyle-Highlight" />
        <class name="By Line" value=".ms-rteStyle-Byline" />
        <class name="Tag Line" value=".rteStyle-Tagline" />
        <class name="Comment" value=".ms-rteStyle-Comment" />
        <class name="References" value=".ms-rteStyle-References" />
        <class name="Caption" value=".ms-rteStyle-Caption" /> 
</classes>

 If i add a new class to the   toolsfile.xml as below

<classes>
        <class name="Clear Class" value="" />
        <class name="Table class" value=".tablecustom" />        
</classes>

The new class added .tablecustom is not shown in the editor. Why is it so ?. Is there any other configuration needed to be done ?

















Ianko
Telerik team
 answered on 29 Jul 2014
1 answer
310 views
Hello. It seems radmap is using osm. It's great.
But if the client cannot access internet, can the map be shown?
Besides, can radmap be interactive with osm and geojson file in order to show the specific city rather than the whole world?
Ianko
Telerik team
 answered on 29 Jul 2014
2 answers
138 views
Good evening.

I've noticed that the progress bar does not work well when you step with decimal values ​​in Primary or Secondary Percent attribute.

The bar remains constantly at 100%

progress.SecondaryPercent = Math.Round (myPercent, 2);

progress.SecondaryPercent = Math.Round (myPercent, 0);

I think it's something that has to do with the locale. If working with the decimal encoding Spain (The decimal point is a comma) works bad, if I work with the american encoding works well.

Sorry for my poor English

Jordi
Jordi
Top achievements
Rank 1
 answered on 29 Jul 2014
16 answers
588 views
Not sure what I'm doing wrong here... Tried to adapt example from Grid demos to my app, but not having much success here. Clicking Edit opens the edit form not as a pop-up, but as an edit form when I test within Visual Studio. If I push the app to a web site, it works as expected. However, that makes it exceedingly difficult to debug new application development. Is there a way I can debug this type of app within the visual studio environment, or am I forced to set up a test web server and constantly push changes there for testing?

My aspx page:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="List.aspx.cs" Inherits="MyWebApp.Admin.Companies.List" %>
<%@ Register src="NavigationMenu.ascx" tagname="NavigationMenu" tagprefix="uc1" %>
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 
    <head runat="server">
        <title></title>
    </head>
    <body>
        <form id="form2" runat="server">
            <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server" DefaultLoadingPanelID="RadAjaxLoadingPanel1">
                <AjaxSettings>
                    <telerik:AjaxSetting AjaxControlID="RadGrid_Companies">
                        <UpdatedControls>
                            <telerik:AjaxUpdatedControl ControlID="RadGrid_Companies" LoadingPanelID="RadAjaxLoadingPanel1" />
                        </UpdatedControls>
                    </telerik:AjaxSetting>
                </AjaxSettings>
            </telerik:RadAjaxManager>
            <telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server" />
  
            <asp:SqlDataSource ID="SqlDataSource_Companies" runat="server" ConnectionString="<%$ ConnectionStrings:MyCS %>" SelectCommand="SELECT * FROM Companies ORDER BY Name ASC" />
 
            <div>
                <uc1:NavigationMenu ID="CompanyMenu" runat="server" />
                <br />
            </div>
            <div>
                <telerik:RadGrid ID="RadGrid_Companies" runat="server" AllowFilteringByColumn="True" AllowPaging="True" AllowSorting="True" AutoGenerateColumns="False" CellSpacing="0" DataSourceID="SqlDataSource_Companies" GridLines="None" AllowAutomaticInserts="True" AllowAutomaticUpdates="True" AllowCustomPaging="True" ShowStatusBar="true">
                    <MasterTableView DataKeyNames="Company_Key" DataSourceID="SqlDataSource_Companies" AllowMultiColumnSorting="True" EditMode="PopUp" commanditemdisplay="Bottom">
                        <Columns>
                            <telerik:GridEditCommandColumn ButtonType="ImageButton" />
                            <telerik:GridBoundColumn DataField="CompanyName" FilterControlAltText="Filter CompanyName column" HeaderText="Company Name" SortExpression="CompanyName" UniqueName="CompanyName" HeaderStyle-HorizontalAlign="Center" HeaderStyle-VerticalAlign="Middle" />
                        </Columns>
                        <EditFormSettings UserControlName="EditPopup.ascx" EditFormType="WebUserControl" PopUpSettings-Height="800px" PopUpSettings-Width="600px" PopUpSettings-ScrollBars="Auto" PopUpSettings-Modal="true" EditColumn-UniqueName="EditCommandColumn1" />
                    </MasterTableView>
                </telerik:RadGrid>
            </div>
        </form>
    </body>
</html>

The EditPopup.ascx page:

<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="EditPopup.ascx.cs" Inherits="MyWebApp.Admin.Companies.EditPopup" %>
<%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>
<table ID="table1" width="100%">
    <tr>
        <td>
            Company Name:
        </td>
        <td>
            <telerik:RadTextBox ID="RadTextBox_CompanyName" runat="server" width="100%" Text='<%# DataBinder.Eval( Container, "DataItem.Name"  ) %>' />
        </td>
    </tr>
    <tr>
        <td>
            <br />
            <asp:Button ID="btnUpdate" Text="Update" runat="server" CommandName="Update" Visible='<%# !(DataItem is Telerik.Web.UI.GridInsertionObject) %>' />
            <asp:Button ID="btnInsert" Text="Insert" runat="server" CommandName="PerformInsert" Visible='<%# DataItem is Telerik.Web.UI.GridInsertionObject %>'/>
              
            <asp:Button ID="btnCancel" Text="Cancel" runat="server" CausesValidation="False" CommandName="Cancel" />
        </td>
    </tr>
</table>

Le
Top achievements
Rank 1
 answered on 29 Jul 2014
2 answers
152 views
Hi,
My RadTreeList has rows of different height. The content on each row is vertically aligned to the middle of the row. How can i manage that the expand/collapse buttons are also vertically aligned to the middle of the row.

See the attachments for clarification:
treelist.jpg is a screenshot of my treelist
treelist.jpg is a screenshot about what i want to achieve

Thank you,
Sonia.
Sonia
Top achievements
Rank 1
 answered on 29 Jul 2014
7 answers
601 views
Hi

I am adding a radmenu onto a page through class not through source. Now I want to access the value or selected index using javascript. I tried to accomplish this task by finding rad menu but its giving an exception that RadMenu with this id does not exists
e.g
$find("<%= RadMenu1.ClientID %>");

I can not access this neither on page nor in any javascript file.

Please let me know how to do this.

Thank
Bharat Bhushan
Aneliya Petkova
Telerik team
 answered on 29 Jul 2014
5 answers
200 views
HI,
I upgraded Telerik Ajax version from Telerik.Web.UI_2010_2_826_Dev_Skins to Telerik.Web.UI_2010_2_929_Dev_hotfix version.

I deleted older 826 version Telerik dlls & Added New Version dlls to bin folder.
I am still getting below errors.
Error   3   Assembly 'Telerik.Web.UI, Version=2010.2.929.40, Culture=neutral, PublicKeyToken=121fae78165ba3d4' uses
'System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'
which has a higher version than referenced assembly 'System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'       
Error   6   Assembly 'Telerik.Web.UI, Version=2010.2.929.40, Culture=neutral, PublicKeyToken=121fae78165ba3d4' uses 'System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' which has a higher version than referenced assembly 'System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' 
how can i resolve this issue..? please respond to my post.

When i look at other forums thay said delete the references & Add new dll's. i did the same still i am getting above messages.
is there anything i can do in my web.config file..can you look at it.. i couldn't understand wht need to be changed..?

<?

 

 

xml version="1.0"?>

 

<

 

 

configuration>

 

<

 

 

configSections>

 

<

 

 

sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">

 

<

 

 

sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">

 

<

 

 

section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication"/>

 

<

 

 

sectionGroup name="webServices" type="System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">

 

<

 

 

section name="jsonSerialization" type="System.Web.Configuration.ScriptingJsonSerializationSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="Everywhere"/>

 

<

 

 

section name="profileService" type="System.Web.Configuration.ScriptingProfileServiceSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication"/>

 

<

 

 

section name="authenticationService" type="System.Web.Configuration.ScriptingAuthenticationServiceSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication"/>

 

</

 

 

sectionGroup>

 

</

 

 

sectionGroup>

 

</

 

 

sectionGroup>

 

</

 

 

configSections>

 

<

 

 

connectionStrings>

 

<

 

 

add name="NDIConnectionString" connectionString="Data Source=sqd-102\QSRV1;Initial Catalog=NDI;Integrated Security=True" providerName="System.Data.SqlClient"/>

 

</

 

 

connectionStrings>

 

<

 

 

system.web>

 

<

 

 

customErrors mode="On" defaultRedirect="~/404errorpage.aspx">

 

<

 

 

error statusCode="403" redirect="~/404errorpage.aspx"/>

 

<

 

 

error statusCode="404" redirect="~/404errorpage.aspx"/>

 

</

 

 

customErrors>

 

<

 

 

pages>

 

<

 

 

controls>

 

<

 

 

add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>

 

</

 

 

controls>

 

</

 

 

pages>

 

<!--

 

 

***** Begin Authentication section ***** -->

 

<

 

 

authentication mode="Windows">

 

<

 

 

forms name="MyAuth" timeout="60" cookieless="AutoDetect" defaultUrl="Default.aspx" protection="All" slidingExpiration="true"/>

 

</

 

 

authentication>

 

<

 

 

sessionPageState historySize="100"/>

 

<

 

 

sessionState mode="InProc" cookieless="false" regenerateExpiredSessionId="true" sqlCommandTimeout="9000" stateNetworkTimeout="9000" timeout="9000"/>

 

<

 

 

identity impersonate="true"/>

 

<!--

 

 

***** End Authentication section ***** -->

 

<!--

Set compilation debug="true" to insert debugging

symbols into the compiled page. Because this

affects performance, set this value to true only

during development.

 

 

 

-->

 

<

 

 

compilation debug="true">

 

<

 

 

assemblies>

 

<

 

 

add assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>

 

<

 

 

add assembly="Microsoft.AnalysisServices.AdomdClient, Version=9.0.242.0, Culture=neutral, PublicKeyToken=89845DCD8080CC91"/>

 

<

 

 

add assembly="System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>

 

<

 

 

add assembly="System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>

 

<

 

 

add assembly="System.Web.Extensions.Design, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>

 

<

 

 

add assembly="System.Data.Linq, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>

 

<

 

 

add assembly="System.Xml.Linq, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>

 

<

 

 

add assembly="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>

 

<

 

 

add assembly="Microsoft.ReportViewer.WebForms, Version=8.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>

 

<

 

 

add assembly="Microsoft.ReportViewer.Common, Version=8.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>

 

<

 

 

add assembly="System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>

 

<

 

 

add assembly="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>

 

<

 

 

add assembly="System.Configuration, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>

 

<

 

 

add assembly="System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>

 

<

 

 

add assembly="System.Xml, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>

 

<

 

 

add assembly="System.Data, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>

 

<

 

 

add assembly="System.Web.Services, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>

 

<

 

 

add assembly="System.DirectoryServices, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>

 

<

 

 

add assembly="System.DirectoryServices.Protocols, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>

 

<

 

 

add assembly="System.EnterpriseServices, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>

 

<

 

 

add assembly="System.ServiceProcess, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>

 

<

 

 

add assembly="System.Web.RegularExpressions, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>

 

<

 

 

add assembly="System.Web.DynamicData, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>

 

<

 

 

add assembly="System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>

 

<

 

 

add assembly="System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>

 

<

 

 

add assembly="System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>

 

<

 

 

add assembly="System.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>

 

<

 

 

add assembly="System.ComponentModel.DataAnnotations, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>

 

<

 

 

add assembly="System.Data.Linq, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>

 

<

 

 

add assembly="System.Data.Entity, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>

 

<

 

 

add assembly="System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>

 

<

 

 

add assembly="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>

 

<

 

 

add assembly="System.Web.Entity, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>

 

<

 

 

add assembly="System.Xml.Linq, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>

 

<

 

 

add assembly="System.Xml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>

 

<

 

 

add assembly="System.Configuration, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>

 

<

 

 

add assembly="System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>

 

<

 

 

add assembly="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>

 

<

 

 

add assembly="System.Runtime.Serialization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>

 

<

 

 

add assembly="System.Data.DataSetExtensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>

 

<

 

 

add assembly="System.Speech, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>

 

<

 

 

add assembly="Telerik.Web.Design, Version=2010.2.929.40, Culture=neutral, PublicKeyToken=121FAE78165BA3D4"/></assemblies>

 

<

 

 

buildProviders>

 

<

 

 

add extension=".rdlc" type="Microsoft.Reporting.RdlBuildProvider, Microsoft.ReportViewer.Common, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>

 

</

 

 

buildProviders>

 

</

 

 

compilation>

 

<

 

 

httpHandlers>

 

<

 

 

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

 

<

 

 

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

 

<

 

 

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

 

<

 

 

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

 

<

 

 

add path="Reserved.ReportViewerWebControl.axd" verb="*" type="Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" validate="false"/>

 

<

 

 

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

 

</

 

 

httpHandlers>

 

<

 

 

httpModules>

 

<

 

 

add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>

 

</

 

 

httpModules>

 

<

 

 

httpRuntime maxRequestLength="102400"/>

 

</

 

 

system.web>

 

<!--

 

 

***** Begin AppSettings section ***** -->

 

<

 

 

appSettings>

 

<

 

 

add key="CachingEnabled" value="FALSE"/>

 

<

 

 

add key="IndicateEnvironment" value="TRUE"/>

 

<!--

 

 

<add key="SqlServerConnectionString_DEV" value="Data Source=sqd-102\QSRV1;Initial Catalog=NDI;Integrated Security=SSPI;"/>

 

<add key="SqlServerConnectionString_TEST" value="Data Source=SQT-101\QSRV1;Initial Catalog=NDI;Integrated Security=SSPI;"/>

<add key="SqlServerConnectionString_STAGE" value="Data Source=sqd-102\QSRV1;Initial Catalog=NDI;Integrated Security=SSPI;"/>

<add key="SqlServerConnectionString_TRAIN" value="Data Source=sqd-102\QSRV1;Initial Catalog=NDI;Integrated Security=SSPI;"/>

<add key="SqlServerConnectionString_PROD" value="Data Source=sqd-102\QSRV1;Initial Catalog=NDI;Integrated Security=SSPI;"/>

 

 

-->

 

<

 

 

add key="SqlServerConnectionString" value="Data Source=sqd-102\QSRV1;Initial Catalog=NDI;Integrated Security=SSPI; Connect Timeout=180;"/>

 

<

 

 

add key="ReportingService.ReportService2005" value="http://isd-v-dss-srs1.cdc.gov/ReportServer"/>

 

<

 

 

add key="ReportFolder" value="/NDI"/>

 

<

 

 

add key="Filepath" value="//cdc/project/CCHIS_NCHS_NVSS/DEV//NDI/"/>

 

<

 

 

add key="Revision" value="1.24.0 build 1"/>

 

</

 

 

appSettings>

 

<!--

 

 

***** End AppSettings section ***** -->

 

<

 

 

system.webServer>

 

<

 

 

validation validateIntegratedModeConfiguration="false"/>

 

<

 

 

modules>

 

<

 

 

add name="ScriptModule" preCondition="integratedMode" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>

 

</

 

 

modules>

 

<

 

 

handlers>

 

<

 

 

remove name="WebServiceHandlerFactory-Integrated"/>

 

<

 

 

add name="ScriptHandlerFactory" verb="*" path="*.asmx" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>

 

<

 

 

add name="ScriptHandlerFactoryAppServices" verb="*" path="*_AppService.axd" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>

 

<

 

 

add name="ScriptResource" preCondition="integratedMode" verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>

 

<

 

 

add name="ChartImage_axd" verb="*" preCondition="integratedMode" path="ChartImage.axd" type="Telerik.Web.UI.ChartHttpHandler"/>

 

</

 

 

handlers>

 

</

 

 

system.webServer>

 

</

 

 

configuration>

 


Boyan
Telerik team
 answered on 29 Jul 2014
7 answers
206 views
Hi,

 I am using rad chart with dynamically dispaly in my asp.net application. When the data comes from the database e.g If I got 145 records from the database and try to generate the chart with same data, so our Chat control works fine but when I got the 150 records and try to generate the chart control I am getting an error
An error has occurred while processing Chart 'chartControl':
An Unexpected error has occurred. Please review the InnerException for more information how to resolve the problem.
------------- InnerException -------------
Parameter is not valid. 


I have few concern about RadChart Control :

1) How many records should be display at single RadChart control ?
2) How many Number of color combination used for Chart control ?
3) What is the maximum number of records limit to generate in a single chart ?

I do not understand what is wrong in this case.

Thanks,
Bylar
Danail Vasilev
Telerik team
 answered on 29 Jul 2014
1 answer
171 views
Hello,

I am working on a project with a RadGrid.
In the RadGrid, each column has a filter and a DetailView.
The grid has a StaticHeader.
When page direction is Right To Left (RTL) and the user scrolls, the StaticHeader’s location goes wrong.

VB .NET:
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
    If Not IsPostBack Then
            RadGrid1.AllowSorting = True
            RadGrid1.MasterTableView.AllowSorting = True
            RadGrid1.PageSize = 50
            RadGrid1.MasterTableView.AllowPaging = True
            RadGrid1.AllowPaging = False
  
            Dim tableViewOrders = New GridTableView(RadGrid1)
            RadGrid1.MasterTableView.DetailTables.Add(tableViewOrders)
            RadGrid1.ClientSettings.Scrolling.UseStaticHeaders = True
            RadGrid1.AllowFilteringByColumn = True
        RadGrid1.MasterTableView.HeaderStyle.Width = Unit.Pixel(200)
        End If
End Sub

ASPX:
<body dir="rtl">
    <form id="form1" runat="server">
<telerik:RadGrid ID="RadGrid1" runat="server" MasterTableView-EnableHeaderContextMenu="true" Height="600px" Width="700px" Skin="Web20" MasterTableView-Dir="RTL">
                            <ClientSettings>
                                   <Scrolling AllowScroll="True"></Scrolling>
                                <ClientEvents />                 
                            </ClientSettings>
                        </telerik:RadGrid>
 
 </form>
</body>

I have attached a video that shows the problem: 
[Video Link]

How can I solve this problem?
 
Thanks,
Daniel.
Pavlina
Telerik team
 answered on 29 Jul 2014
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?