Hi,
I have using Radgrid Export to PDF option. i have four columns in my radgrid. i am using linkbutton in my grid. but all record download but linkbutton column not showing in PDF. i am using in aspx page in this code.
<ExportSettings ExportOnlyData="true" IgnorePaging="True" OpenInNewWindow="true" >
<Pdf FontType="Subset" PaperSize="Letter" PageTitle="Employee Password List" />
<Excel Format="Html" />
<Csv RowDelimiter="NewLine" FileExtension="Csv"/>
</ExportSettings>
<PagerStyle Mode="NextPrevNumericAndAdvanced" />
and vb page
If e.ExportType = ExportType.Pdf Then
dgPortalUsers.ExportSettings.IgnorePaging = True
dgPortalUsers.ExportSettings.OpenInNewWindow = True
dgPortalUsers.ExportSettings.ExportOnlyData = True
e.ExportOutput = Replace(e.ExportType, "<br/>", "")
End If
I have three doubts in this page
1. How to display linkbutton(Text) in PDF and Excel
2. How to hide Filter option what we enter some text.
3. How to restrict particular row in this grid. like name=John means we need to download without this row.
I have attached images also. Please check and help me ASAP.
Thanks in Advance,
Dhamu.
I have using Radgrid Export to PDF option. i have four columns in my radgrid. i am using linkbutton in my grid. but all record download but linkbutton column not showing in PDF. i am using in aspx page in this code.
<ExportSettings ExportOnlyData="true" IgnorePaging="True" OpenInNewWindow="true" >
<Pdf FontType="Subset" PaperSize="Letter" PageTitle="Employee Password List" />
<Excel Format="Html" />
<Csv RowDelimiter="NewLine" FileExtension="Csv"/>
</ExportSettings>
<PagerStyle Mode="NextPrevNumericAndAdvanced" />
and vb page
If e.ExportType = ExportType.Pdf Then
dgPortalUsers.ExportSettings.IgnorePaging = True
dgPortalUsers.ExportSettings.OpenInNewWindow = True
dgPortalUsers.ExportSettings.ExportOnlyData = True
e.ExportOutput = Replace(e.ExportType, "<br/>", "")
End If
I have three doubts in this page
1. How to display linkbutton(Text) in PDF and Excel
2. How to hide Filter option what we enter some text.
3. How to restrict particular row in this grid. like name=John means we need to download without this row.
I have attached images also. Please check and help me ASAP.
Thanks in Advance,
Dhamu.