Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
216 views

I am gettting a 'telerik is undefined' error on a webpage which i have only one radasyncupload control.  The error is breaking the page stopping the rest of the javascript on the page loading. Everything works fine if i remove the asyncupload control. 

This works fine when developing in Visual Studio, works fine on an internal server but i am getting the above error when deployed to an external server (with the same web.config values for the http handlers) Servers both running IIS 7. Below are the settings from system.web and system.webserver config sections.

 

<system.web>
    <compilation targetFramework="4.5" />
    <globalization uiCulture="auto" culture="auto" />
    <httpRuntime targetFramework="4.5" />
    <customErrors mode="Off"/>
    <httpHandlers>
      <add path="ChartImage.axd" type="Telerik.Web.UI.ChartHttpHandler" verb="*" validate="false" />
      <add path="Telerik.Web.UI.SpellCheckHandler.axd" type="Telerik.Web.UI.SpellCheckHandler" verb="*" validate="false" />
      <add path="Telerik.Web.UI.DialogHandler.aspx" type="Telerik.Web.UI.DialogHandler" verb="*" validate="false" />
      <add path="Telerik.RadUploadProgressHandler.ashx" type="Telerik.Web.UI.RadUploadProgressHandler" verb="*" validate="false" />
      <add path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" verb="*" validate="false" />
    </httpHandlers>
    <httpModules>
      <add name="RadUploadModule" type="Telerik.Web.UI.RadUploadHttpModule" />
      <add name="RadCompression" type="Telerik.Web.UI.RadCompression" />
    </httpModules>
    <pages enableSessionState="true">
      <controls>
        <add tagPrefix="telerik" namespace="Telerik.Web.UI" assembly="Telerik.Web.UI" />
      </controls>
    </pages>
  </system.web>
  <system.webServer>
    <validation validateIntegratedModeConfiguration="false" />
    <modules runAllManagedModulesForAllRequests="true">
      <remove name="RadUploadModule" />
      <add name="RadUploadModule" type="Telerik.Web.UI.RadUploadHttpModule" preCondition="integratedMode" />
      <remove name="RadCompression" />
      <add name="RadCompression" type="Telerik.Web.UI.RadCompression" preCondition="integratedMode" />
    </modules>
    <handlers>
      <remove name="ChartImage_axd" />
      <remove name="Telerik_Web_UI_SpellCheckHandler_axd" />
      <remove name="Telerik_Web_UI_DialogHandler_aspx" />
      <remove name="Telerik_RadUploadProgressHandler_ashx" />
      <remove name="Telerik_Web_UI_WebResource_axd" />
      <add name="ChartImage_axd" path="ChartImage.axd" type="Telerik.Web.UI.ChartHttpHandler" verb="*" preCondition="integratedMode" />
      <add name="Telerik_Web_UI_SpellCheckHandler_axd" path="Telerik.Web.UI.SpellCheckHandler.axd" type="Telerik.Web.UI.SpellCheckHandler" verb="*" preCondition="integratedMode" />
      <add name="Telerik_Web_UI_DialogHandler_aspx" path="Telerik.Web.UI.DialogHandler.aspx" type="Telerik.Web.UI.DialogHandler" verb="*" preCondition="integratedMode" />
      <add name="Telerik_RadUploadProgressHandler_ashx" path="Telerik.RadUploadProgressHandler.ashx" type="Telerik.Web.UI.RadUploadProgressHandler" verb="*" preCondition="integratedMode" />
      <add name="Telerik_Web_UI_WebResource_axd" path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" verb="*" preCondition="integratedMode" />
      <add name="Telerik.Web.UI.WebResource" path="Telerik.Web.UI.WebResource.axd" verb="*" type="Telerik.Web.UI.WebResource, Telerik.Web.UI, Culture=neutral, PublicKeyToken=121fae78165ba3d4" />
    </handlers>
    <httpRedirect enabled="false" destination="" />
  </system.webServer>

 

IIS 7

Telerik version 2015.1.401.45

 

Marc
Top achievements
Rank 1
 answered on 24 Jun 2015
1 answer
160 views
I want to put into places a icon ? that has tooltip help info. these need to be by themselves and not tied to anything. just where I place them on the page.
is there an easy control in telerik that does this?
Marin Bratanov
Telerik team
 answered on 24 Jun 2015
14 answers
680 views
I want to bind Rad Gantt of Telerik from code behind here is my code:
<telerik:RadGantt runat="server" ID="RadGantt1" Width="1275px" Height="600px" ListWidth="351px"
SelectedView="WeekView" Skin="Silk" AutoGenerateColumns="false">
<Columns>
<telerik:GanttBoundColumn DataField="TaskName" DataType="String" Width="120px"></telerik:GanttBoundColumn>
<telerik:GanttBoundColumn DataField="StartDate" DataType="DateTime" DataFormatString="dd/MM/yy" Width="40px"></telerik:GanttBoundColumn>
<telerik:GanttBoundColumn DataField="EndDate" DataType="DateTime" DataFormatString="dd/MM/yy" Width="40px"></telerik:GanttBoundColumn>
</Columns>
<DataBindings>
<TasksDataBindings IdField="TaskID" ParentIdField="TaskID" StartField="StartDate" OrderIdField="TaskID" SummaryField="Summary" ExpandedField="Expanded" EndField="EndDate" TitleField="TaskName"
PercentCompleteField="PercentComplete" />
<DependenciesDataBindings TypeField="Type" IdField="TaskID" PredecessorIdField="TaskID" SuccessorIdField="TaskID" />
</DataBindings>
</telerik:RadGantt>
and in code behindRadGantt1.DataSource = Gatdata();
RadGantt1.DataBind();I am having this error on DataBind() "DataSourceID may not be null in case of DataSource binding" here GetData() method return very simple datatable which contains columns and valid data
Bozhidar
Telerik team
 answered on 24 Jun 2015
6 answers
813 views
Hello,
Is there a method to convert the Barcode into a solid image rather then use javascript & css?  This would be ideal in scenarios where you want to e-mail the Barcode to the end-user and not have to bother with embedding js or having them visit the site?
Long
Top achievements
Rank 1
 answered on 24 Jun 2015
1 answer
114 views

Dears,

 

we are using the RadGrid with a lot of TemplateColumns. Now we setup the grouping for several columns

Groupable="true" GroupByExpression="FIELDNAME FIELDNAMEALIAS GROUP BY FIELDNAME"

Because of a multi language system we have to switch the FIELDNAMEALIAS based on context setting

I tried to use literal replacer like <%$ECMResource: mgm_matgr %>, but this did not work. Is there a way to change the alias without code behind?

 

Thanks

Oliver

Maria Ilieva
Telerik team
 answered on 23 Jun 2015
3 answers
295 views

Hi i have 3 radgrid in my application. It is in Parent page. In child page i have the data's to be inserted into the list(not just a grid insert, but a page with validation controls and all). I'm using jquery popup for that.

After closing the popup window i want to rebind the radgrid in client side using  $find("<% =Grid1.ClientID %>").get_masterTableView().rebind();

It is working fine, if we have only one grid. However it is not working if it 3 grids like below:

$find("<% =Grid1.ClientID %>").get_masterTableView().rebind();

$find("<% =Grid2.ClientID %>").get_masterTableView().rebind();

$find("<% =Grid3.ClientID %>").get_masterTableView().rebind();

The above code executes in client side and rebinds only the LAST one.. here that Grid3 rebinds.

FYI : Now i want  to achieve it within this jquery popup not with Radwindow manager.

Maria Ilieva
Telerik team
 answered on 23 Jun 2015
1 answer
194 views

It seems no matter what I do I end up with a space between columns of about 20px or so.  I have used the CSS below, which I found in another thread, to remove margins and padding.  This help a little but still some space.  How can I remove the space between columns?  I am very new to html, css, and asp.net so I am struggling a bit.

 

       html .content .t-col,
        html .content .t-container {
            padding: 0;
            margin: 0;
            
        }

        html .content {
            padding: 0;
            margin: 0;
        }  


Nencho
Telerik team
 answered on 23 Jun 2015
1 answer
210 views

Hi,

 I have a RadScheduler set up to use web service binding. Everything works okay, except when navigating to another page before the scheduler has finished retrieving the appointments (either clicking away or hitting F5 can do this), an alert will be thrown with the message 'The server method 'GetAppointments' failed' or 'The server method 'GetResources' failed. I don't want to prevent the user navigating away, so I need to be able to handle/suppress this error message. Is there any way to do this?

 You can reproduce the same thing on the demo page at http://demos.telerik.com/aspnet-ajax/scheduler/examples/overview/defaultcs.aspx, hit F5 after the scheduler appears but before the appointments have been populated. I have so far only reproduced this in Firefox. The timing is quite tricky to get it on the demo, but if the scheduler were using a slower data provider it would be easier to replicate.

Bozhidar
Telerik team
 answered on 23 Jun 2015
4 answers
167 views
Hi
I have a navigator control that it's nodes (RadLinkButton ) have  load on demand tooltip to display some extra info
sometimes when I'm working and clicking on navigator nodes ( when the tooltip has not been loaded completely) I get this error :

RadToolTipManager response error :
Exception=Sys.WebForms.PageRequestManagerServerErrorException: An unknown error occurred while processing the request on the server.
The status code returnde from the server was:0

how can I prevent this message to be displayed
Thanks for your feedbacks
Marin Bratanov
Telerik team
 answered on 23 Jun 2015
1 answer
240 views

Hi,

I need to do validation of all steps in a radwizard when I click on a button outside wizard.

Any suggestions on how to do this?

 

Thanks,

Anil

Plamen
Telerik team
 answered on 23 Jun 2015
Narrow your results
Selected tags
Tags
+? more
Top users last month
Cynthia
Top achievements
Rank 1
Iron
Toby
Top achievements
Rank 3
Iron
Iron
Iron
Danielle
Top achievements
Rank 1
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
yw
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Cynthia
Top achievements
Rank 1
Iron
Toby
Top achievements
Rank 3
Iron
Iron
Iron
Danielle
Top achievements
Rank 1
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
yw
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?