Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
6.3K+ views
As part of our company’s security test they have asked us to find out the following:

Issue:
Our client exposed site is requesting Webresource.axd file with paramaters d and t as part of the web request but when the value of t parameter is modified as part of a penetration test it seems to comeback with an OK(200) responds instead of a custom error from our site.

Question:
Are you guys processing the t paramater as part of the GET request to Webrescource.axd? If you are, what do you expect to have in that t parameter as part of your processing (ex t is a timestamp or t is a number)?
Marin Bratanov
Telerik team
 answered on 27 Oct 2018
19 answers
2.5K+ views
Can you suggest how can we find only the changed rows in a batch Editing Grid and read them one by one provided the Save Button is placed outside the grid.
essai
Top achievements
Rank 1
 answered on 26 Oct 2018
17 answers
1.4K+ views
Hi,
 I am using RadAsyncUpload control for select a image file from physical path like "D:/Mypicture/pic1.jpeg" and I want to get the full physical path means ‘D:/Mypicture/pic1.jpeg’ but I haven’t get the full path using RadAsyncUpload control.
Below is my code :-
.aspx
<telerik:RadAsyncUpload runat="server" ID=" RadAsyncUpload " ReadOnlyFileInputs="false" Width="225px" MaxFileInputsCount="1" OverwriteExistingFiles="true"> </telerik:RadAsyncUpload>

.cs
foreach (UploadedFile file in RadAsyncUpload.UploadedFiles)
{
String fullpath = file.FileName;
}
Using this code I got only image name i.e. ‘pic1.jpeg’

Please help!

Regards
Ravi
jayavel
Top achievements
Rank 1
 answered on 26 Oct 2018
5 answers
561 views

I have a very simple ASPX page and followed the installation procedures for Telerik UI for ASP.NET AJAX, all seems good and no errors when entering the source ... but as soon as I hit "Design" tab in VS 2015 IDE to view I get the following error for any Telerik control reference:

 

<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="Login.aspx.vb" Inherits="DC.Web.Login" %>
 
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
 
<!DOCTYPE html>
 
<head runat="server">
    <title>Login</title>
</head>
<body>
    <form id="Login" runat="server">
         
        <!-- RadScriptManager is required for all AJAX based controls -->
        <telerik:RadScriptManager ID="rsmLogin" runat="server"></telerik:RadScriptManager>
        <telerik:RadSkinManager ID="rskmLogin" runat="server"></telerik:RadSkinManager>
        <telerik:RadInputManager ID="rimLogin" runat="server"></telerik:RadInputManager>
        <telerik:RadFormDecorator ID="rfdLogin" runat="server" />
 
        <div>
 
            <telerik:RadLightBox ID="RadLightBox1" runat="server"></telerik:RadLightBox>
     
        </div>
 
    </form>
</body>
</html>
Rumen
Telerik team
 answered on 26 Oct 2018
1 answer
91 views

If the Org Chart has 1 root item, drag and drop works fine (See TelerikOrgChartDragWorking.png).

 

But, if there are 2 root items, then drag and drop does not work (See OrgChartDragNotWorking.png), it won't even let me start dragging.

 

Any way to fix this?

Peter Milchev
Telerik team
 answered on 26 Oct 2018
1 answer
107 views
RAD Editor seems to be incompatible with latest version of Firefox v63.0. None of the buttons clicks leads to any processing, when using Firefox ESR 60.3 things seem to start working again.
Rumen
Telerik team
 answered on 26 Oct 2018
3 answers
134 views
I have the fallowing problem :

Added RestrictionZoneID and MinimizeZoneID for RadWindowManager in 2 div's

When i run the code and open a window and then minimize it , if i resize the browser the minimzed window change location or disappers completly.

I manage to pin point the problem with chrome dev tools ....

the problem is the style of the wrapper div inside the minimize zone ... is doing the calculations wrong (position , left and top).

please check the code bellow:

Default.aspx
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="multiple_windows_from_code_behind_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 
<body>
    <form id="form1" runat="server">
    
    <asp:ScriptManager ID="Scriptmanager1" runat="server" />
    <telerik:RadWindowManager runat="server" ID="RadWindowManager1"
    RestrictionZoneID="main"
    MinimizeZoneID ="bar" DestroyOnClose="true">
    </telerik:RadWindowManager>
 
<asp:UpdatePanel ID="Updatepanel1" runat="server" UpdateMode="Conditional">
    <ContentTemplate>
        <asp:Button ID="Button1" Text="open a new RadWindow from the server" OnClick="Button1_Click" runat="server" />
    </ContentTemplate>
</asp:UpdatePanel>
<script type="text/javascript">
    function opeNewRadWindow(url)    {
        owin = radopen(url, null);
    }
</script>
    <div id="main" style="border: 1px solid green; width:auto; height:600px;"></div>
    <div id="bar" style="border: 1px solid red; width:auto; height:40px;"></div>
    </form>
</body>
</html>

Default.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
 
public partial class multiple_windows_from_code_behind_Default : System.Web.UI.Page
{
 
    protected void Button1_Click(object sender, EventArgs e)
    {
        string url = "someurl.aspx?pageid=999"; //built the URL here
        ScriptManager.RegisterStartupScript(this.Page, this.Page.GetType(), "testing", "opeNewRadWindow" + "(\"" + url + "\");", true);
    }
 
}




Kalin
Telerik team
 answered on 26 Oct 2018
2 answers
195 views

When adding the RadDropDownList "ddlManifiestoVehiculo" the RadAjaxManager stopped working, what is the reason it does not work?

 

<telerik:RadAjaxManager ID="ramServicioVehiculo" runat="server">
        <AjaxSettings>
            <telerik:AjaxSetting AjaxControlID="ddlManifiesto">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="ddlEscotilla" />
                    <telerik:AjaxUpdatedControl ControlID="rgCargaManifestada" />
                    <telerik:AjaxUpdatedControl ControlID="ddlManifiestoVehiculo" />
                </UpdatedControls>
            </telerik:AjaxSetting>
            <telerik:AjaxSetting AjaxControlID="ddlEscotilla">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="ddlManifiesto" />
                    <telerik:AjaxUpdatedControl ControlID="rgCargaManifestada" />
                </UpdatedControls>
            </telerik:AjaxSetting>
            <telerik:AjaxSetting AjaxControlID="rgCargaManifestada">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="rgCargaManifestada" LoadingPanelID="radpControlVehiculo" />
                    <telerik:AjaxUpdatedControl ControlID="rgDetalleChequeo" />
                </UpdatedControls>
            </telerik:AjaxSetting>
            <telerik:AjaxSetting AjaxControlID="rgDetalleChequeo">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="rgDetalleChequeo" LoadingPanelID="radpControlDetalleVehiculo" />
                    <telerik:AjaxUpdatedControl ControlID="lblMensaje" />
                </UpdatedControls>
            </telerik:AjaxSetting>
        </AjaxSettings>
    </telerik:RadAjaxManager>
    <telerik:RadAjaxLoadingPanel ID="radpControlVehiculo" runat="server"></telerik:RadAjaxLoadingPanel>
    <telerik:RadAjaxLoadingPanel ID="radpControlDetalleVehiculo" runat="server"></telerik:RadAjaxLoadingPanel>
    <telerik:RadLabel ID="lblIdManifiesto" runat="server" Text="Manifiesto:"></telerik:RadLabel>
    <telerik:RadDropDownList ID="ddlManifiesto" runat="server" DataSourceID="sdsManifiesto"
        DataTextField="ManNave" DataValueField="man_id_manifiesto" DefaultMessage="Seleccione el manifiesto" ToolTip="Manifiestos" AutoPostBack="True" Width="220px">
    </telerik:RadDropDownList>
    <asp:SqlDataSource ID="sdsManifiesto" runat="server" ConnectionString='<%$ ConnectionStrings:csOp_SPC %>' SelectCommand="SELECT CONCAT(man_id_manifiesto, ' - ', man_nom_nave) AS ManNave, man_id_manifiesto FROM op_manifiesto WITH (NOLOCK) ORDER BY man_id_manifiesto DESC"></asp:SqlDataSource>
    <br />
    <telerik:RadLabel ID="lblEscotilla" runat="server" Text="Escotilla:"></telerik:RadLabel>
    <telerik:RadDropDownList ID="ddlEscotilla" runat="server" DataSourceID="sdsEscotilla"
        DataTextField="DsEscotilla" DataValueField="IxEscotilla" DefaultMessage="Seleccione la escotilla" ToolTip="Escotillas" AutoPostBack="True" Width="220px">
    </telerik:RadDropDownList>
    <asp:SqlDataSource ID="sdsEscotilla" runat="server" ConnectionString='<%$ ConnectionStrings:csOp_SPC %>' SelectCommand="SELECT TOP (SELECT arr_escotillas FROM ss_arribo WITH (NOLOCK) WHERE arr_manifiesto = @IdManifiesto) IxEscotilla, DsEscotilla FROM Escotilla WITH (NOLOCK)">
        <SelectParameters>
            <asp:ControlParameter ControlID="ddlManifiesto" PropertyName="SelectedValue" Name="IdManifiesto"></asp:ControlParameter>
        </SelectParameters>
    </asp:SqlDataSource>
    <br />
    <h6>Control del Chequeo</h6>
    <telerik:RadTabStrip runat="server" ID="rtsCV" MultiPageID="rmpCV" SelectedIndex="0">
        <Tabs>
            <telerik:RadTab PageViewID="rpvCargaManifestada" Text="Carga Manifestada"></telerik:RadTab>
            <telerik:RadTab PageViewID="rpvDetalleChequeo" Text="Detalle Chequeo"></telerik:RadTab>
        </Tabs>
    </telerik:RadTabStrip>
    <telerik:RadMultiPage runat="server" ID="rmpCV" SelectedIndex="0">
        <telerik:RadPageView runat="server" ID="rpvCargaManifestada">
            <telerik:RadGrid ID="rgCargaManifestada" runat="server" DataSourceID="sdsCargaManifestada" OnItemCommand="rgCargaManifestada_ItemCommand"
                AllowPaging="True" AllowSorting="True" AllowFilteringByColumn="True" Culture="es-ES" CssClass="RadGrid_ModernBrowsers"
                FilterType="HeaderContext" EnableHeaderContextMenu="true" EnableHeaderContextFilterMenu="true" PagerStyle-AlwaysVisible="true"
                EnableLinqExpressions="False" ShowGroupPanel="True">
 
                <GroupingSettings CollapseAllTooltip="Collapse all groups" CaseSensitive="False"></GroupingSettings>
 
                <ExportSettings FileName="Carga Manifestada" ExportOnlyData="True" HideStructureColumns="True" IgnorePaging="True" OpenInNewWindow="True">
                    <Excel Format="Xlsx" FileExtension="xlsx"></Excel>
                </ExportSettings>
 
                <ClientSettings AllowDragToGroup="True">
                    <Selecting AllowRowSelect="True"></Selecting>
                    <Resizing AllowColumnResize="true" ResizeGridOnColumnResize="false" AllowResizeToFit="true" />
                </ClientSettings>
 
                <MasterTableView DataKeyNames="IxMDC" DataSourceID="sdsCargaManifestada" AutoGenerateColumns="False" CommandItemDisplay="Top">
                    <CommandItemSettings ShowAddNewRecordButton="false"></CommandItemSettings>
                    <Columns>
                        <telerik:GridBoundColumn DataField="IxMDC" Display="false" ReadOnly="True" HeaderText="Indice MDC" SortExpression="IxMDC" UniqueName="IxMDC" DataType="System.Int32" FilterControlAltText="Filter IxMDC column"></telerik:GridBoundColumn>
                        <telerik:GridBoundColumn DataField="tcar_descripcion" HeaderText="Carga" SortExpression="tcar_descripcion" UniqueName="tcar_descripcion" FilterControlAltText="Filter tcar_descripcion column" CurrentFilterFunction="Contains">
                            <HeaderStyle HorizontalAlign="Center" Font-Bold="true" Font-Size="11"></HeaderStyle>
                            <ItemStyle HorizontalAlign="Center"></ItemStyle>
                        </telerik:GridBoundColumn>
                        <telerik:GridBoundColumn DataField="DsCliente" HeaderText="Cliente" SortExpression="DsCliente" UniqueName="DsCliente" FilterControlAltText="Filter DsCliente column" CurrentFilterFunction="Contains">
                            <HeaderStyle HorizontalAlign="Center" Font-Bold="true" Font-Size="11"></HeaderStyle>
                            <ItemStyle HorizontalAlign="Center"></ItemStyle>
                        </telerik:GridBoundColumn>
                        <telerik:GridBoundColumn DataField="CantidadManifestada" HeaderText="Cantidad Manifestada" SortExpression="CantidadManifestada" UniqueName="CantidadManifestada" DataType="System.Int32" FilterControlAltText="Filter CantidadManifestada column" CurrentFilterFunction="Contains">
                            <HeaderStyle HorizontalAlign="Center" Font-Bold="true" Font-Size="11"></HeaderStyle>
                            <ItemStyle HorizontalAlign="Center"></ItemStyle>
                        </telerik:GridBoundColumn>
                        <telerik:GridBoundColumn DataField="CantidadChequeada" HeaderText="Cantidad Chequeada" SortExpression="CantidadChequeada" UniqueName="CantidadChequeada" DataType="System.Int32" FilterControlAltText="Filter CantidadChequeada column" CurrentFilterFunction="Contains">
                            <HeaderStyle HorizontalAlign="Center" Font-Bold="true" Font-Size="11"></HeaderStyle>
                            <ItemStyle HorizontalAlign="Center"></ItemStyle>
                        </telerik:GridBoundColumn>
                        <telerik:GridButtonColumn HeaderText="Detalle" HeaderStyle-Width="70px" CommandName="detalle" Text="Ver detalle" UniqueName="Detalle" ButtonType="ImageButton" ImageUrl="/Shared/Images/detalle.png">
                            <HeaderStyle HorizontalAlign="Center" Font-Bold="true" Font-Size="11"></HeaderStyle>
                            <ItemStyle HorizontalAlign="Center"></ItemStyle>
                        </telerik:GridButtonColumn>
                    </Columns>
                </MasterTableView>
                <HeaderContextMenu RenderMode="Auto"></HeaderContextMenu>
            </telerik:RadGrid>
            <asp:SqlDataSource runat="server" ID="sdsCargaManifestada" ConnectionString='<%$ ConnectionStrings:csOp_SPC %>' SelectCommand="SELECT ManifiestoDetalleCarga.IxMDC, op_tipocarga.tcar_descripcion, ClienteExactus.DsCliente, ManifiestoDetalleCarga.CantidadManifestada, ManifiestoDetalleCarga.CantidadChequeada FROM ManifiestoDetalleCarga INNER JOIN Escotilla ON ManifiestoDetalleCarga.IxEscotilla = Escotilla.IxEscotilla INNER JOIN ClienteExactus ON ManifiestoDetalleCarga.IdCliente = ClienteExactus.IdCliente COLLATE SQL_Latin1_General_CP1_CI_AS INNER JOIN op_tipocarga ON ManifiestoDetalleCarga.IdTipoCarga = op_tipocarga.tcar_idtipocarga WHERE (ManifiestoDetalleCarga.IdManifiesto = @IdManifiesto) AND (ManifiestoDetalleCarga.IxEscotilla = @IxEscotilla)">
                <SelectParameters>
                    <asp:ControlParameter ControlID="ddlManifiesto" PropertyName="SelectedValue" Name="IdManifiesto"></asp:ControlParameter>
                    <asp:ControlParameter ControlID="ddlEscotilla" PropertyName="SelectedValue" Name="IxEscotilla"></asp:ControlParameter>
                </SelectParameters>
            </asp:SqlDataSource>
        </telerik:RadPageView>
        <telerik:RadPageView runat="server" ID="rpvDetalleChequeo">
            <telerik:RadLabel ID="lblMensaje" runat="server" Visible="false" ForeColor="DarkBlue" Font-Bold="true" Font-Size="11"></telerik:RadLabel>
            <telerik:RadGrid ID="rgDetalleChequeo" runat="server" DataSourceID="sdsDetalleChequeo" OnItemCommand="rgDetalleChequeo_ItemCommand"
                AllowPaging="True" AllowSorting="True" AllowFilteringByColumn="True" Culture="es-ES" CssClass="RadGrid_ModernBrowsers"
                AllowAutomaticUpdates="True" FilterType="HeaderContext" EnableHeaderContextMenu="true" EnableHeaderContextFilterMenu="true" PagerStyle-AlwaysVisible="true"
                EnableLinqExpressions="False" ShowGroupPanel="True">
 
                <GroupingSettings CollapseAllTooltip="Collapse all groups" CaseSensitive="False"></GroupingSettings>
 
                <ExportSettings FileName="Detalle Chequeo" ExportOnlyData="True" HideStructureColumns="True" IgnorePaging="True" OpenInNewWindow="True">
                    <Excel Format="Xlsx" FileExtension="xlsx"></Excel>
                </ExportSettings>
 
                <ClientSettings AllowDragToGroup="True">
                    <Selecting AllowRowSelect="True"></Selecting>
                    <Resizing AllowColumnResize="true" ResizeGridOnColumnResize="false" AllowResizeToFit="true" />
                </ClientSettings>
 
                <MasterTableView DataKeyNames="IxMDCCV" DataSourceID="sdsDetalleChequeo" AutoGenerateColumns="False" CommandItemDisplay="Top" EditMode="Batch">
                    <CommandItemSettings SaveChangesText="Guardar cambios" CancelChangesText="Cancelar cambios" ShowExportToExcelButton="True" ShowAddNewRecordButton="false"></CommandItemSettings>
                    <BatchEditingSettings EditType="Row" />
                    <Columns>
                        <telerik:GridBoundColumn Display="false" DataField="IxMDCCV" ReadOnly="True" HeaderText="Indice MDCCV" SortExpression="IxMDCCV" UniqueName="IxMDCCV" DataType="System.Int32" FilterControlAltText="Filter IxMDCCV column"></telerik:GridBoundColumn>
                        <telerik:GridBoundColumn DataField="Consecutivo" ReadOnly="true" HeaderText="Consecutivo" SortExpression="Consecutivo" UniqueName="Consecutivo" DataType="System.Int32" FilterControlAltText="Filter Consecutivo column" CurrentFilterFunction="Contains">
                            <HeaderStyle HorizontalAlign="Center" Font-Bold="true" Font-Size="11"></HeaderStyle>
                            <ItemStyle HorizontalAlign="Center"></ItemStyle>
                        </telerik:GridBoundColumn>
                        <telerik:GridBoundColumn DataField="FcMDCCV" ReadOnly="true" HeaderText="Fecha" SortExpression="FcMDCCV" UniqueName="FcMDCCV" DataType="System.DateTime" FilterControlAltText="Filter FcMDCCV column" CurrentFilterFunction="Contains">
                            <HeaderStyle HorizontalAlign="Center" Font-Bold="true" Font-Size="11"></HeaderStyle>
                            <ItemStyle HorizontalAlign="Center"></ItemStyle>
                        </telerik:GridBoundColumn>
                        <telerik:GridTemplateColumn DataField="IxMV" HeaderText="Número de chasis (VIN)" SortExpression="IxMV" UniqueName="IxMV" DataType="System.Int32" FilterControlAltText="Filter IxMV column" CurrentFilterFunction="Contains">
                            <HeaderStyle HorizontalAlign="Center" Font-Bold="true" Font-Size="11"></HeaderStyle>
                            <ItemStyle HorizontalAlign="Left"></ItemStyle>
                            <EditItemTemplate>
                                <telerik:RadDropDownList ID="ddlManifiestoVehiculo" runat="server" DataValueField="IxMV" DataTextField="DsMV" DataSourceID="sdsManifiestoVehiculo"></telerik:RadDropDownList>
                            </EditItemTemplate>
                            <ItemTemplate>
                                <%#DataBinder.Eval(Container.DataItem, "DsMV")%>
                            </ItemTemplate>
                        </telerik:GridTemplateColumn>
                        <telerik:GridTemplateColumn DataField="IxChofer" HeaderText="Chofer" SortExpression="IxChofer" UniqueName="IxChofer" DataType="System.Int32" FilterControlAltText="Filter IxChofer column" CurrentFilterFunction="Contains">
                            <HeaderStyle HorizontalAlign="Center" Font-Bold="true" Font-Size="11"></HeaderStyle>
                            <ItemStyle HorizontalAlign="Left"></ItemStyle>
                            <EditItemTemplate>
                                <telerik:RadDropDownList ID="ddlChofer" runat="server" DataValueField="IxChofer" DataTextField="NumChofer" DataSourceID="sdsChofer"></telerik:RadDropDownList>
                            </EditItemTemplate>
                            <ItemTemplate>
                                <%#DataBinder.Eval(Container.DataItem, "NumChofer")%>
                            </ItemTemplate>
                        </telerik:GridTemplateColumn>
                        <telerik:GridBoundColumn DataField="Observacion" HeaderText="Observación" SortExpression="Observacion" UniqueName="Observacion" FilterControlAltText="Filter Observacion column" CurrentFilterFunction="Contains">
                            <HeaderStyle HorizontalAlign="Center" Font-Bold="true" Font-Size="11"></HeaderStyle>
                            <ItemStyle HorizontalAlign="Left"></ItemStyle>
                        </telerik:GridBoundColumn>
                        <telerik:GridButtonColumn ConfirmText="¿Desea eliminar este chequeo?" ConfirmDialogType="Classic" ConfirmTitle="Eliminar" HeaderText="Eliminar" HeaderStyle-Width="70px" CommandName="eliminar" Text="Eliminar" UniqueName="Eliminar" ButtonType="ImageButton" ImageUrl="/Shared/Images/eliminar.png">
                            <HeaderStyle HorizontalAlign="Center" Font-Bold="true" Font-Size="11"></HeaderStyle>
                            <ItemStyle HorizontalAlign="Center"></ItemStyle>
                        </telerik:GridButtonColumn>
                    </Columns>
                </MasterTableView>
                <HeaderContextMenu RenderMode="Auto"></HeaderContextMenu>
            </telerik:RadGrid>
            <asp:SqlDataSource runat="server" ID="sdsDetalleChequeo" ConnectionString='<%$ ConnectionStrings:csOp_SPC %>' SelectCommand="SELECT MDCControlV.IxMDCCV, MDCControlV.Consecutivo, MDCControlV.FcMDCCV, MDCControlV.IxMV, MDCControlV.IxChofer, MDCControlV.Observacion, ManifiestoVehiculo.DsMV, CONCAT(MVChofer.NumeroChofer, ' - ', MVChofer.Nombre) AS NumChofer FROM MDCControlV WITH (NOLOCK) INNER JOIN MVChofer WITH (NOLOCK) ON MDCControlV.IxChofer = MVChofer.IxChofer INNER JOIN ManifiestoVehiculo ON MDCControlV.IxMV = ManifiestoVehiculo.IxMV WHERE (MDCControlV.IxMDC = @IxMDC)" UpdateCommand="UPDATE MDCControlV SET IxMV = @IxMV, IxChofer = @IxChofer, Observacion = @Observacion WHERE (IxMDCCV = @IxMDCCV)">
                <SelectParameters>
                    <asp:Parameter Name="IxMDC"></asp:Parameter>
                </SelectParameters>
                <UpdateParameters>
                    <asp:Parameter Name="IxMV"></asp:Parameter>
                    <asp:Parameter Name="IxChofer"></asp:Parameter>
                    <asp:Parameter Name="Observacion"></asp:Parameter>
                    <asp:Parameter Name="IxMDCCV"></asp:Parameter>
                </UpdateParameters>
            </asp:SqlDataSource>
            <asp:SqlDataSource runat="server" ID="sdsChofer" ConnectionString='<%$ ConnectionStrings:csOp_SPC %>' SelectCommand="SELECT CONCAT(NumeroChofer, ' - ', Nombre) AS NumChofer, IxChofer FROM MVChofer WITH(NOLOCK) ORDER BY NumeroChofer"></asp:SqlDataSource>
            <asp:SqlDataSource runat="server" ID="sdsManifiestoVehiculo" ConnectionString='<%$ ConnectionStrings:csOp_SPC %>' SelectCommand="SELECT IxMV, DsMV FROM ManifiestoVehiculo WITH (NOLOCK) WHERE (IdManifiesto = @IdManifiesto) AND (IxMV NOT IN (SELECT MDCControlV.IxMV FROM MDCControlV WITH (NOLOCK) INNER JOIN ManifiestoDetalleCarga WITH (NOLOCK) ON MDCControlV.IxMDC = ManifiestoDetalleCarga.IxMDC WHERE (ManifiestoDetalleCarga.IdManifiesto = @IdManifiesto) AND (MDCControlV.IxMV IS NOT NULL)))">
                <SelectParameters>
                    <asp:ControlParameter ControlID="ddlManifiesto" PropertyName="SelectedValue" Name="IdManifiesto"></asp:ControlParameter>
                </SelectParameters>
            </asp:SqlDataSource>
        </telerik:RadPageView>
    </telerik:RadMultiPage>
Carlos
Top achievements
Rank 1
 answered on 25 Oct 2018
0 answers
79 views

Hi Telerik Team,

 

Our application try to customize "Paste from word" and "Paste from word, strip font" dialogs. I downloaded the Telerik_UI_for_ASP.NET_AJAX_2014_2_724_Dev.zip file but I cannot find user control files in the EditorDialogs folder. We are using Telerik 2014.2.724 version. Could you please let me know where I can find the source code?

 

Thanks,

 

Lan

lan luo
Top achievements
Rank 1
Iron
 asked on 25 Oct 2018
2 answers
1.1K+ views
Hi team,

I found many thread about this issue. Like below

http://www.telerik.com/community/forums/wpf/gridview/export-to-excel-2007.aspx
http://www.telerik.com/community/forums/aspnet-ajax/grid/excel-export-the-file-you-are-trying-to-open-filename-is-in-a-different-format-than-specified-by-the-file-extension.aspx

And the link how to fix (use registry)
http://www.itexperience.net/2008/03/17/excel-2007-error-different-format-than-specified-by-the-file-extension/

But seem, it was before 2012. Our client has concern this warning message. So I would like to receive the ways to solve but not use Registry.

Thanks.

Attila Antal
Telerik team
 answered on 25 Oct 2018
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?