Hello all,
I have written a short web application with a RadGrid bind to sqlDataSource. The select command of the sqldatasource is generated dynamically as a response to a button click event and than the RadGrid is refreshed. There is another button to perform CSV export of the RadGrid. But whenever I click on it, I see that something is doing, but no dialog box to save the csv file appears. I can see that the IE8 do something, unfortunately I cannot read the bottom status bar of IE8
The exporting code is very simply:
I have written a short web application with a RadGrid bind to sqlDataSource. The select command of the sqldatasource is generated dynamically as a response to a button click event and than the RadGrid is refreshed. There is another button to perform CSV export of the RadGrid. But whenever I click on it, I see that something is doing, but no dialog box to save the csv file appears. I can see that the IE8 do something, unfortunately I cannot read the bottom status bar of IE8
The exporting code is very simply:
protected void ButtonCsvExport_Click(object sender, EventArgs e)
{
RadGridCommandList.MasterTableView.ExportToCSV();
}
The RadGrid is populated. Multirow selection is turned on and others functions like "delete selected" or "update selected" work fine, the both are also triggered by buttons.
Please can someone help me, a newbie to Telerik ?
Thanks in adavance.