[This is preliminary documentation and is subject to change.]
Many aspects of RAD PDF can be controlled via client-side JavaScript
Client Side Interfaces
At this time only the RadPdfApi Class can be used to interface with a RadPdfWebControl instance.
RadPdfApi Class
The RadPdfApi Class for JavaScript can be used to assist with web application integration and allow for smooth PostBacks to your ASP.NET application
An instance of the RadPdfApi can be created to interface with a single RadPdfWebControl instance. This is done by creating an instance of the RadPdfApi class via the RadPdfApi Constructor. When constructing an instance of the RadPdfApi class, the ID of the RadPdfWebControl instance which you wish to interface with must be passed as a parameter. For example:
var myRadPdfApi = new RadPdfApi("RadPdfWebControl1"); // where "RadPdfWebControl1" is the ID (ClientID) assigned to the RadPdfWebControl instance
Methods of the RadPdfApi class can then be called. For example:
myRadPdfApi.save(false);