PDA

View Full Version : Can I change the Way the Wizards Create ASP?



Nick Wright
12-Jan-2006, 12:39 AM
I am using AJAX in my Webapp, as such I frequently change things like form
labels using javascript, in order to do that I would like the WBO Entry
Wizard to create in a non-std way like so:

<tr>
<td class="Label"><label
for="Prospect__Name">Company Name</label></td>
<td class="entry">
<input type="text" size="60" title=""
id="Prospect__Name" name="Prospect__Name" value="<%
=oProspect.DDValue("Prospect.Name") %>" />
</td>
</tr>

instead of:

<tr>
<td class="Label">Company Name</td>
<td class="entry">
<input type="text" size="60" title=""
name="Prospect__Name" value="<% =oProspect.DDValue("Prospect.Name") %>" />
</td>
</tr>

notice the <label> tag and id in the form.

Is there a transform document or something similar that the wizard uses?

Nick

David Martinko
12-Jan-2006, 12:46 AM
Yes and no. errrr um, you can create your own wizards... but you can't edit
the existing ones. unless there is some source files out there I don't know
of.

In VDF 11.x Select "Configure Create New" from the "Tools" menu. So you can
create your own custom Wizards and add them to the Studio. So unless the
wizard is a template (tpl)... you'll have to create your own VDF app to be
called from the studio.

--
David Martinko
Redeemed Software
248-535-7495
RedeemedSoftware(SHIFT+2)Hotmail(PERIOD)com
www.redeemedsoftware.com
www.redeemedhosting.com

"Nick Wright" <nwright@legend.com.au> wrote in message
news:hB64YqzFGHA.3096@dacmail.dataaccess.com...
I am using AJAX in my Webapp, as such I frequently change things like form
labels using javascript, in order to do that I would like the WBO Entry
Wizard to create in a non-std way like so:

<tr>
<td class="Label"><label
for="Prospect__Name">Company Name</label></td>
<td class="entry">
<input type="text" size="60" title=""
id="Prospect__Name" name="Prospect__Name" value="<%
=oProspect.DDValue("Prospect.Name") %>" />
</td>
</tr>

instead of:

<tr>
<td class="Label">Company Name</td>
<td class="entry">
<input type="text" size="60" title=""
name="Prospect__Name" value="<% =oProspect.DDValue("Prospect.Name") %>" />
</td>
</tr>

notice the <label> tag and id in the form.

Is there a transform document or something similar that the wizard uses?

Nick

Mark Rutherford
12-Jan-2006, 09:24 AM
Its high time those wizards get posted for us to customize.
They dont exactly spit out valid HTML.

How about it DAW?

David Martinko wrote:
> Yes and no. errrr um, you can create your own wizards... but you can't edit
> the existing ones. unless there is some source files out there I don't know
> of.
>
> In VDF 11.x Select "Configure Create New" from the "Tools" menu. So you can
> create your own custom Wizards and add them to the Studio. So unless the
> wizard is a template (tpl)... you'll have to create your own VDF app to be
> called from the studio.
>