- changed from input type="button" to type="submit"

- changed attribute names to html-conform ones (with -> cols, height -> rows)
- now using attribute "class" instead of attribute style where it defines a css class
This commit is contained in:
Robert Gaggl 2003-08-02 10:42:16 +00:00
parent eee0bf7f5d
commit 0ff833ada3
2 changed files with 5 additions and 5 deletions

View file

@ -1,9 +1,9 @@
<form method="post" action="<% response.action %>">
<input type="hidden" name="proto" value="<% request.proto %>" />
<input type="hidden" name="name" value="<% request.name %>" />
<% this.skin as="editor" width="50" height="25" wrap="virtual" style="formWide" %>
<% this.skin as="editor" cols="50" rows="25" wrap="virtual" class="formWide" %>
<p><% input type="button" name="save" value="Save" %>&nbsp;<% input type="button" name="cancel" value="Cancel" %> &nbsp; <a href="#help">help</a></p>
<p><% input type="submit" name="save" value="Save" %>&nbsp;<% input type="submit" name="cancel" value="Cancel" %> &nbsp; <a href="#help">help</a></p>
</form>
<a name="help"></a>