Steve:
Actually, your app is probably working fine - but you didn't tell it to output
anything :-)
Your code creates the output and nests the other outputs within it, but doesn't assign
any values to those outputs.
You can use createOutput(name, String) to create and set contents in a single call,
e.g.
createOutput("ID", "SomeIdToBePrinted");
Mike
On Tue, 26 Aug 2003 15:15:45 -0700
"Stephen Davidson" <[EMAIL PROTECTED]> wrote:
> Hi Mike.
>
> This is definately an improvement, but not quite there yet.
>
> The improvement, no more crashes (Thanks!).
>
> The output is "blank", specifically,
> ,,,
>
> So, I am guessing I have something incorrect in the JSP.
> Suggestions?
>
> Thanks,
> Steve
>
> <===Begin JSP snippet===>
> <table>
> <tr>
> <td>
> <logic:iterate id="clipTitle" name="editClipTitles" property="nested">
> <bean:write name="clipTitle"/>,
> </logic:iterate>
> </td>
> </tr>
> </table>
>
> <===Begin Java snippet===>
> //TODO: Load these titles from the Database MetaData
> ModelResponse res = request.createResponse();
> Output titles = res.createOutput("editClipTitles");
> titles.add(res.createOutput("ID"));
> titles.add(res.createOutput("Title"));
> titles.add(res.createOutput("Description"));
> res.add(titles);
>
> -Steve
>
> --
> Java/J2EE Developer/Integrator
> Currently "On the Road"
> 214-724-7741
>
>
>
> http://keelframework.org/documentation
> Keelgroup mailing list
> [EMAIL PROTECTED]
> http://lists.keelframework.com/listinfo.cgi/keelgroup-keelframework.com
Michael Nash
JGlobal Ltd.
http://www.jglobal.com
http://keelframework.org/documentation
Keelgroup mailing list
[EMAIL PROTECTED]
http://lists.keelframework.com/listinfo.cgi/keelgroup-keelframework.com