Hi
I'm using an ajaxyfied radgrid and want to use the command buttons the grid offers for export.
But Clicking on one of them does not export it shows the generated output on the page.
What I understood from all reading about this is, I have to disable ajax
for the export something like this:
On all the examples I've found a button, "Button1", is used to do this. How do I reference the internal buttons of the radgrid to do the same or is there a different way of doing this?
Thanks in advance
Hans-Dieter
I'm using an ajaxyfied radgrid and want to use the command buttons the grid offers for export.
But Clicking on one of them does not export it shows the generated output on the page.
What I understood from all reading about this is, I have to disable ajax
for the export something like this:
<
script
type
=
"text/javascript"
>
function RequestStart(sender, args)
{
if (args.EventTarget == "Button1")
{
args.EnableAjax = false;
}
}
</
script
>
Thanks in advance
Hans-Dieter