HOME - Recent Changes - Search:

Academic Work


Personal

* pot de départ


dblp


(:twitter:)

-----

[ edit | logout ]
[ help | sandbox | passwd ]

20100612MoreSubmits

#############################

Description

I needed the following form: an input field; a submit button (that stores the input text in the session); and a clear button (that removes the text from the session, i.e. replaces it with an empty string). I wanted them in one line.

Difficulty

Both the submit button and the clear button need to do some action. The input textfield and the submit button can be grouped in a form, and the clear button can go to another form. But in this case the clear button appears in a new line. If I used a table for formatting, it meant that the clear button's form was included in the other form => it stopped working :(

Solution

Put them in a table. Create a form with the textfield and the submit button, and add a link to the clear button (instead of putting it in another form).

<portlet:actionURL var="searchUrl">
    <portlet:param name="searchPressed" value="true" />
</portlet:actionURL>

<portlet:actionURL var="clearUrl">
    <portlet:param name="clearPressed" value="true" />
</portlet:actionURL>

<form action="<%= searchUrl %>" method="POST">
  <table border="0" cellpadding="5" cellspacing="5">
    <tr>
      <td>
        <input type="text" name="searchGlobalTerm" value="<%= searchTerm %>">
      </td>
      <td>&nbsp;</td>
      <td>
        <input name="save" type="submit" value="Search">
      </td>
      <td>&nbsp;</td>
      <td>
        <%-- if you press the Clear button, an action will be activated, but we don't use a form here --%>
        <a href="<%= clearUrl %>"><input type="submit" name="reset" value="Clear" /></a>
      </td>
    </tr>
  </table>
</form>
Cloud City


anime | bash | blogs | bsd | c/c++ | c64 | calc | comics | convert | cube | del.icio.us | digg | east | eBooks | egeszseg | elite | firefox | flash | fun | games | gimp | google | groovy | hardware | hit&run | howto | java | javascript | knife | lang | latex | liferay | linux | lovecraft | magyar | maths | movies | music | p2p | perl | pdf | photoshop | php | pmwiki | prog | python | radio | recept | rts | scala | scene | sci-fi | scripting | security | shell | space | súlyos | telephone | torrente | translate | ubuntu | vim | wallpapers | webutils | wikis | windows


Blogs and Dev.

* Ubuntu Incident
* Python Adventures
* me @ GitHub


Places

Debrecen | France | Hungary | Montreal | Nancy


Notes

full circle | km


Hobby Projects

* Jabba's Codes
* PmWiki
* Firefox
* PHP
* JavaScript
* Scriptorium
* Tutorials
* me @ GitHub


Quick Links


[ edit ]

View - Edit - History - Attach - Print *** Report - Recent Changes - Search
Page last modified on 2010 June 13, 05:59