Hello everyone,

Since this is the help forum I thought it fitting to
inform you about a new widget (called iForm) that I've
create that might be of some benefit to you.

This widget will allow you to take total control of
form elements by listening to their events form within
DynAPI. 

It's very easy to use:

  var htm="Name:<input type=text name=Fname size=10>"
  var myForm=iForm(null,100,100,150,100,htm)
  var e=new Eventlistner()
  e.onFname_change=function(e,control){
      alert(" Hello -> "+control.value)
  }
  myForm.addEventlistener(e)
  DynAPI.document.addChild(myForm)
  

Here's the url address:

http://www24.brinkster.com/dyntools


--
Raymond
 

__________________________________________________
Do You Yahoo!?
Make a great connection at Yahoo! Personals.
http://personals.yahoo.com

_______________________________________________
Dynapi-Help mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/dynapi-help

Reply via email to