Standard HTML components in Studio Creator 2?

Hi,

I was going through "Java Server Faces in Action" book from Manning "Project Track" example and I decided to try the examples with Sun Creator. However, I noticed that it lacks standard HTML components. E.g. I cannot produce the following code with drag & drop of a standard HTML <table> because there isn't any in neither Basic nor Standard components palette.

<table>

<tr>

<td>

<h:graphicImage url="/images/logo.gif"

alt="Welcome to ProjectTrack"

title="Welcome to ProjectTrack"

width="149" height="160"/>

</td>

<td>

<font face="Arial, sans-serif"

size="6">

<h:outputText value="ProjectTrack"/>

</font>

</td>

</tr>

</table>

Am I missing something, or do I have to use an HTML editor like Dreamweaver to do this?

Thanks in advance for your replies.

Best regards,

John.

[1198 byte] By [jkost2] at [2007-11-26 10:34:23]
# 1
You are correct, there is no drag and drop for standard HTML elements like table. However, you can still manually add them with JSC. Just switch to the JSP tab and type in the tags you would like to use.
jsr at 2007-7-7 2:43:53 > top of Java-index,Development Tools,Java Tools...