Hide Changes Hide Changes
Print Print
Recent Changes Recent Changes
Subscriptions Subscriptions
Lost and Found Lost and Found
Find References Find References
Rename Rename
Search

History

12/4/2012 4:14:57 AM
171.161.56.16
9/21/2007 3:27:14 PM
72.86.160.82
12/30/2005 7:28:36 AM
213.84.225.3
3/16/2005 7:58:12 AM
194.24.130.11
11/8/2004 10:29:14 AM
-199.184.195.73
List all versions List all versions

FTB_ API
.
Summary FTB_API is a JavaScript object that allows access to all the FreeTextBox controls on a page

In JavaScript you can find FreeTextBox control using the following syntax

In JavaScript, you can find a particular FreeTextBox control using the following syntax:

 ftb = FTB_API['FreeTextBox1']
 ftb.InsertHtml("some <b>text</b>");
 <script type="text/javascript">
   ftb = FTB_API['FreeTextBox1'];
   ftb.InsertHtml("some <b>text</b>");
 </script>

In this example 'FreeTextBox1' is the ClientID of the FreeTextBox. The Client ID is generated by the .NET framework and can be accessed by getting ClientID.

In this example 'FreeTextBox1' is the ClientID of the FreeTextBox. The ClientID is generated by the .NET framework and can be accessed by getting ClientID.

Welcome to FreeTextBoxWiki

If you're new to FreeTextBox, read the Installation.