Drupal查看中公开的过滤器的AJAX重置按钮
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Drupal查看中公开的过滤器的AJAX重置按钮相关的知识,希望对你有一定的参考价值。
What it does: clears & submits exposed filters form via AJAX (if enabled, otherwise normal page refresh).This is for Views 2.x. It works with the 'remember me' option.
You need to create a custom module. E.g. custom/custom.module and custom/custom.info. Enable your custom module via admin/build/modules.
function CUSTOM_form_alter(&$form, $form_state, $form_id) { if ($form_id == 'views_exposed_form') { '#type' => 'markup', '#value' => '<input '. drupal_attributes(array('type' => 'button', 'value' => t('Reset') )) .'onclick="javascript:$(this.form).clearForm();$(this.form).submit();" class="form-submit" />', ); } }
以上是关于Drupal查看中公开的过滤器的AJAX重置按钮的主要内容,如果未能解决你的问题,请参考以下文章