June 2002
Intermediate to advanced
400 pages
7h 48m
English
What remains to be converted are the <img> and the text <input> elements. Unfortunately, just to add a / before the closing > requires us to re-create XHTML components for them. We'll start with prototyping the XHTML <img> element.
As usual, we are going to develop the WXImage in isolation. So create a development project WXImageTest. Add a new component WXImage and make it a partial document.
NOTE
There is an example framework called WOComponentElements, which does use the WX prefix. Do not confuse these WX elements with those WebObjects example components.
To prototype WXImage, we are going to use WOXMLNode instead of WOGenericElement as we did before. WOXMLNode terminates ...