Browse By Tags

  • performance issues with Infragistics WebExcelExporter.Export(webdatagrid, worksheet) with large data sets

    I am using Infragistics WebExcelExporter.Export(webdatagrid, worksheet) to export large datatable having 70000+ rows and 25 columns. The export fails due to timeouts. Is there any other way to export with Infragistics WebExcelExporter.

    Works without any…

  • WEBDATAGRID EXPORT TO EXCEL WORKING FINE AFTER FILTERING FOR STRING COLUMNS BUT NOT FOR DATE TIME COLUMNS

    I am exporting the filtered data of webdatagrid. It is working fine for string columns but for datetime columns suppose if filtering on this month the ui is showing correct filtered data but while exporting to excel it is showing current month data suppose…

  • WebDataGrid - Export To Excel

    Is there a way to get the webdatagrid to export to excel using the Text propery of the webdatagrid and not the Value property?  When you export to excel, if you did any translation in the InitializeRow event, this translation is lost in the export to Excel…

  • Excel Export Layout Properties

    Hi

    I used the excel export example by Murtaza Abdeali and it works great.

    But i was wondering how I could set layout properties with this example eg: set Headers to bold, change fonts, make columns autofit etc.

     

    Thanx in advance

     

    ~Guen~

  • Get WebDataGrid rows in another pages

    Dear All,

    I have a WebDataGrid with Paging behavior enabled.

    I am trying to export the data in the grid to an excel sheet. To do this I am looping through the rows in the grid view  and export it.

    The problem that this approach gets the data in the…

  • is it possible to using the control skill in the webgrid excel exporter of webdatagrid

     

    is it possible to using the control skill in the webgrid excel exporter of  webdatagrid

    ^^;  

    WebDataGrid ---> WebExcelExporter  

    is it possible to using the control skill in the webgrid excel exporter of  webdatagrid  thanks you.

     

     

  • Download webdatagrid data as a zip file

    Hi

    I use Webdatagrid and WebExcelExport tools for some tactical reporting. I have huge data of about 12 MB to fill in the grid and download the same using WEbExcelExporter.

    Is there any was we can zip the content before we download.

     

    Many Thanks

  • How to Remove Hyperlinks while exporting grid cells

    Hi,

    I have a webdatagrid and i have a column of type LinkButton that. I have written some code to give URLs to Linkbutton in InitializeRow of event.

    Now when i am using WebExcelExporter, i am not able to remove these hyperlinks in the exported Excel…

  • CellExporting event

    I am exporting a WebDataGrid without a problem, but I wanted to know if there is any way I can change the exported value for one set of cells. My grid has hyperlinks that I do not want to export to Excel. I would like to replace the hyperlink with just…

  • Grid theme while exporting using WebExcelExporter

    Hi.

    I am trying to export WebDataGrid Data using WebExcelExporter. I am using Infragistics 10.3.20103.2217.

    I am able to download data for i am loosing the grid theme. How can i get the grid theme while downloading the gird data.

    Here is my aspx page…

  • WebExcelExporter only exporting visible rows of WebDataGrid

    We were using UltraWebGrid till now and exporting data to Excel from there. It was working fine. But since we faced some performance issue with it, now we are trying to use WebDataGrid and trying to export data from this grid to Excel using WebExcelExporter…
  • WebExcelExporter Button Click Event To Hide ModalPopupExtender




    protected void btnOKExport_Click(object sender, EventArgs e) {


    string filename = HttpUtility.UrlEncode(this.txtFileNameExport.Text);

    filename = filename.Replace("+", "%20");

    this.eExporter.DownloadName = filename;

    this.eExporter.DataExportMode…

  • Re: ThreadAbortException

    Did you find a solution for this?  

    I'm getting ThreadAbortException when Exporting to Excel from a WebDataGrid.  I have three web pages with the exact same C# code in their btnExport_Click event handler.

    Two of them work, but the third fails with…

  • Re: How to Remove Hyperlinks while exporting grid cells

    Hi,

    I could able to figure out the solution for removing Hyperlinks in the template columns. 

    Here is the code which will remove Hyperlinks while downloading into excel.

     protected void urlDownloads_Click(object sender, System.EventArgs e)
            { 
                try
                {

  • Error when Export to excel an webdatagrid, generated in codebehind

    Hi,

    i get the following error, when i generate an webdatagrid in codebehind,

     

     

    [NullReferenceException: Object reference not set to an instance of an object.]
       Infragistics.Web.UI.Framework.AppStyling.StyleBot.get_AppStylingManager() +105
       Infragistics…

  • Re: Grid theme while exporting using WebExcelExporter

    Here is the sample code to remove Hyperlinks from Template field used in webdatagrid. You can do this in Cell Exporting event of webexcelexporter

    protected void WebExcelExporter1_CellExporting(object sender, ExcelCellExportingEventArgs e)
            {
                if (!e.IsHeaderCell…

  • WebDataGrid WebExcelExporter issue

    We are using Infragistics4.Web.v11.2.dll for webdatagrid in .net 2010

    <%@ Register assembly="Infragistics4.Web.v11.2, Version=11.2.20112.1019, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb" namespace="Infragistics.Web.UI.GridControls…

  • ExcelExport from WebDataGrid problem

    Hi

    I have a WebDataGrid with Paging on and I'd like to put all data in the datasource to the grid so I used the
    eExporter.DataExportMode = DataExportMode.AllDataInDataSource; .

    Despite this it exports the first page only. Then I disabled the paging…