Hello,
RadGrid is a good tool ...but could be improved.
I discovered the finally integrated buttons to export to Excel, Word,pdf,csv...perfect.
But I am still disapointed we still have to add manually javascript to the page:
This should be done by control !
And we should have a way to add from codebehind several javascript functions which would be called OnRequestStart.
Thanks Telerik for this tool but thanks doing some more efforts.
CS
RadGrid is a good tool ...but could be improved.
I discovered the finally integrated buttons to export to Excel, Word,pdf,csv...perfect.
But I am still disapointed we still have to add manually javascript to the page:
| <script type="text/javascript"> |
| function onRequestStart(sender, args) |
| { |
| if (args.get_eventTarget().indexOf("ExportToExcelButton") >= 0 || |
| args.get_eventTarget().indexOf("ExportToWordButton") >= 0 || |
| args.get_eventTarget().indexOf("ExportToPdfButton") >= 0 || |
| args.get_eventTarget().indexOf("ExportToCsvButton") >= 0) |
| { |
| args.set_enableAjax(false); |
| } |
| } |
| </script> |
This should be done by control !
And we should have a way to add from codebehind several javascript functions which would be called OnRequestStart.
Thanks Telerik for this tool but thanks doing some more efforts.
CS