Changes for page Beginner's Questions
Last modified by Kieran Kelleher on 2012/07/21 19:59
From version 18.1
edited by Lachlan Scott
on 2007/07/05 19:55
on 2007/07/05 19:55
Change comment:
There is no comment for this version
To version 16.1
edited by Lachlan Scott
on 2007/07/05 20:14
on 2007/07/05 20:14
Change comment:
There is no comment for this version
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -1,5 +1,16 @@ 1 - Thispage attempts toanswer many of the questions that might ariseas you begin WebObjectsdevelopment in Eclipse. Ifanyone can providelinks to extant resource, please do so.1 +==== Who is this page for? ==== 2 2 3 - ====HowdoI altermalHTML componentattributesthat are generatedwith WOBindings? ====3 +This page and it's children is for people who know how to do something in other environments, and don't immediately grasp how to do it in WebObjects with Eclipse. 4 4 5 -\\ 5 +If anyone can provide links to extant resources of this sort, please do so by creating a log-in, and editing this page as you see fit. 6 + 7 +==== How do I manage standard HTML component attributes markup in my .html page? ==== 8 + 9 +If you were editing plain HTML you might wish to mark up a FORM INPUT component with attributes such as size= maxlength= name= value= etc. In WO, these are not managed in the HTML itself as you might expect, but in the associated .WOD file. 10 + 11 +==== Add the SIZE attribute to a FORM INPUT component ==== 12 + 13 + 14 + 15 +In the .html file, given a WebObject tag <webobject name = "email" /> you can add the SIZE attribute by editing the .wod file mapping as follows:<input size="30" type="text" 16 + \\