Welcome to Pintexx Forum Sign in | Join | Faq

pinEdit

Started by Pintexx Support at 09-02-2005 10:58 . Topic has 0 replies.

Print Search
Sort Posts:    
   09-02-2005, 10:58
Pintexx Support is not online. Last active: 12.01.2012 07:36:39 Pintexx Support

Top 10 Posts
Joined on 08-30-2005
Posts 1.910
How can I use client APIs in ASP.Net ?

Add the following Javascript method to your page:

var editor = null;
// this function is called from pinEdit after init
// objEditor is the internal editor object
// id is the current control id
function editOnEditorLoaded(objEditor,id)
{
  // save the internal editor object for later use
  editor = objEditor;
  // now you have access to all API functions like setting default font
  editor.editSetDefaultFont("Arial","10");
}

You have access to all API functions by using the global variable "editor".


   Report 
Pintexx Forum » Knowledge Base » pinEdit » How can I use client APIs in ASP.Net ?