I'm trying to export to PDF records of a grid.
I`m folowing the example of this demo http://demos.telerik.com/kendo-ui/grid/pdf-export
And i'm having an issue with this part:
.Pdf(pdf => pdf
.AllPages()
.AvoidLinks()
.PaperSize("A4")
.Scale(0.8) -->
.Margin("2cm", "1cm", "1cm", "1cm")
.Landscape()
.RepeatHeaders() -->
.TemplateId("page-template") -->
.FileName("Kendo UI Grid Export.pdf")
.ProxyURL(Url.Action("Pdf_Export_Save", "Grid")))
The compiler of visual studio show me an error of reference for the options (Scale, RepeatHeaders and TemplateId).
I hope someone can help me with this. Please.