Pulldown list without "submit button"

najibx - July 2, 2008 - 04:51
Project:Views Filter Block
Version:5.x-1.x-dev
Component:Code
Category:support request
Priority:normal
Assigned:Unassigned
Status:closed
Description

I have an exposed taxonomy list (only this). How do I go about if i wanted to have a filter without the 'submit button". Shall it be done with http://www.angrydonuts.com/displaying_views_exposed_filters instead?

For example this is from domain navigation module that has this feature.

function theme_domain_nav_default($options) {
global $_domain;
$current = $options[$_domain['domain_id']];
$output = '';
$output .= '';
$output .= ''. t('Jump to...') .'';
foreach ($options as $key => $value) {
($value['active']) ? $selected = ' selected' : $selected = '';
$output .= ''. filter_xss_admin($value['sitename']) .'';
}
$output .= '';
$output .= '';
return $output;
}

#1

najibx - July 11, 2008 - 07:23
Status:active» closed

just use normal snippets ...rather than depend on this module

 
 

Drupal is a registered trademark of Dries Buytaert.