JavaScript DHTML/GUI Components/TextArea

Материал из Web эксперт
Перейти к: навигация, поиск

TextArea in JavaScript

   <source lang="html4strict">

<html> <head> <title>DynAPI Examples - HTML TextArea</title> <script language="JavaScript" src="./dynapisrc/dynapi.js"></script> <script language="Javascript"> dynapi.library.setPath("./dynapisrc/"); dynapi.library.include("dynapi.api"); dynapi.library.include("TemplateManager"); dynapi.library.include("HTMLTextArea"); dynapi.library.include("FlashSound"); </script> <script language="Javascript"> fs = new FlashSound(); fs.setSWF("./dynapiexamples/images/sndfx.swf"); HTMLComponent.setFlashSound(fs); // Set FlashSound object for all HCs var t="Some text text here and here";

var tp = new Template("This is the Template:
<form>
Enter Some Text:
{@fld}
</form>
",100,100,250,200,"#EEEEEE");

tp.addChild(new HTMLTextArea(null,t),"fld"); tp.fld.sndOnKeypress = "/type@start"; tp.fld.setWrap(true); dynapi.document.addChild(tp); </script> </head> <body> <script>

 dynapi.document.insertAllChildren();

</script> </body> </html>

      </source>
   
  

<A href="http://www.wbex.ru/Code/JavaScriptDownload/dynapi.zip">dynapi.zip( 791 k)</a>