掲示板

Clean all fields button

11年前 に Maximiliano Chiesa によって更新されました。

Clean all fields button

Junior Member 投稿: 47 参加年月日: 12/07/20 最新の投稿
Hi! I started learning Liferay a couple of days ago, I'm developing a new portlet for a portal and a I have a Form in which I need a "Clear" button that resets all the fields of the form to their default values.
This is my form at the moment, the button "Clean" would call the action to reset the rest of the fields.

<aui:form action="<%= generateValues %>" method="post">

<aui:select name="depts" label="Depts."> ....... </aui:select>

<aui:select name="type" label="Type"> ....... </aui:select>

<aui:input label="pattern" name="padron" type="text"/>
<br/>

<aui:button type="submit" value="View information" />
<aui:button type="cancel" value="Clean" />
<br/>
</aui:form>


What's the best way of making this?

Thanks!
thumbnail
11年前 に Hitoshi Ozawa によって更新されました。

RE: Clean all fields button

Liferay Legend 投稿: 7942 参加年月日: 10/03/24 最新の投稿
Create a javascript to initialize settings and have button call this method onClick().

<aui:button onClick="<%= initForm() %>" type="cancel" value="Clean" />
11年前 に Maximiliano Chiesa によって更新されました。

RE: Clean all fields button (回答)

Junior Member 投稿: 47 参加年月日: 12/07/20 最新の投稿
This is how I finnaly solved this:

<aui:button type="cancel" value="Limpiar" onclick="this.form.reset()" />

Not sure if it's the best solution but it worked emoticon

Thanks!
thumbnail
11年前 に Hitoshi Ozawa によって更新されました。

RE: Clean all fields button

Liferay Legend 投稿: 7942 参加年月日: 10/03/24 最新の投稿
Your solution seems to be better than mine. Will use it the next time. :-)
thumbnail
11年前 に Mazhar Alam によって更新されました。

RE: Clean all fields button

Regular Member 投稿: 191 参加年月日: 11/11/25 最新の投稿
Try this,

<aui:button type="reset" value="clear"/>
thumbnail
11年前 に Joseph Hobbs によって更新されました。

RE: Clean all fields button

New Member 投稿: 14 参加年月日: 12/07/10 最新の投稿
What about just reloading the page? When the form is displayed it would contain whatever settings/values are present at that time. This would avoid the need to have to cache the info, and would also show any updates that another may have performed between the form display and a user clicking cancel/clean.