Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
122 views
hi, how to remove   CausesValidation from next and prev buttons?

Eyup
Telerik team
 answered on 24 Jun 2015
5 answers
233 views
Hi!

According to documentation the CurrentPageIndex is kept when a Rebind() of grid is performed.

This seems to be true if the paging is done in the MasterTableView. If paging is done in a DetailTable the CurrentPageIndex will always be 0 when rebinding.

Is this by design or should CurrentPageIndex be kept also for DetailTables at rebind?

Thanks
/Mats
Radoslav
Telerik team
 answered on 24 Jun 2015
2 answers
68 views
Spread and pinch gestures works on mobile devices, but does not work on multitouch notebook computers.
Ianko
Telerik team
 answered on 24 Jun 2015
2 answers
207 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
144 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
663 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
759 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
109 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
283 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
187 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
Narrow your results
Selected tags
Tags
+? more
Top users last month
Ambisoft
Top achievements
Rank 2
Iron
Pascal
Top achievements
Rank 2
Iron
Matthew
Top achievements
Rank 1
Sergii
Top achievements
Rank 1
Iron
Iron
Andrey
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Ambisoft
Top achievements
Rank 2
Iron
Pascal
Top achievements
Rank 2
Iron
Matthew
Top achievements
Rank 1
Sergii
Top achievements
Rank 1
Iron
Iron
Andrey
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?