Smalltalk/X WebserverDocumentation of class 'HTMLForm': | |
Class: HTMLFormInheritance:Object | +--Collection | +--SequenceableCollection | +--ArrayedCollection | +--Array | +--HTMLElement | +--HTMLMarkup | +--HTMLForm
Description:Attention: Please read the warning in HTMLElement. a form element. No new features added; however, provides convenient access for some heavily used values (attributes). Instance protocol:accessing
Examples:|reply page document forms form fieldElements sel| reply := HTTPInterface get:'http://reiseauskunft.bahn.de/bin/query.exe/dn'. page := reply data asString. document := HTMLParser parseText:page. forms := document elementsForWhich:[:el | el isFormElement]. form := forms detect:[:form | form name = 'formular']. fieldElements := form fieldElements. sel := fieldElements detect:[:el | el name = 'REQ0HafasSearchForw']. |
|
ST/X 7.7.0.0; WebServer 1.702 at 20f6060372b9.unknown:8081; Mon, 18 Nov 2024 08:26:54 GMT |