Academic Work Personal
|
Liferay /
20100612MoreSubmits
DescriptionI 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. DifficultyBoth 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 :( SolutionPut 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> </td> <td> <input name="save" type="submit" value="Search"> </td> <td> </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> |
![]() 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 Places Debrecen | France | Hungary | Montreal | Nancy Notes Hobby Projects * Jabba's Codes Quick Links [ edit ] |