Skip to content

The core repository for TSE example apps across all DevCraft products

License

Notifications You must be signed in to change notification settings

PMcDonough11/TseExamples

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 

Repository files navigation

TseExamples

The core repository for TSE example apps across all DevCraft products.

UploadingToWebApi

This demo contains three projects. An ASP.NET application with Web APIs and MVC views, and WPF & UWP client applications to interact with the APIs.

Telerik Reporting REST Service

This is a straightforward demo that hosts a Telerik Reporting REST Service (ReportsController.cs) so that you can see the HTML5 ReportViewer in an MVC View. You can see this demo now at the following link HTML5 ReportViewer in MVC View

PDF Generator Web API

The PDF Generator WebAPI is an ApiController that will return a PDF file from custom uploaded content. The working being done on the server means you can use any client (UWP, Xamarin.Forms, WPF, etc).

public class MyPdfContent
{
    public string Title { get; set; }

    public string Body { get; set; }

    public string BackgroundColor { get; set; }

    public string RequestedFileName { get; set; }

    public string ImageBase64 { get; set; }
}

Example

The Visual Studio solution contains two client demo apps, WPF one and UWP. Here's the UWP client example app rendering the runtime XAML in a PDF document.

image

About

The core repository for TSE example apps across all DevCraft products

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 81.9%
  • C# 15.2%
  • HTML 2.7%
  • Other 0.2%