hi i have one page with links (in view1)
{{=A(tag.f_name,_href=URL('games_with_tags_show',vars=dict(tags=tag.f_name )))}} and i have search form (in function2/view2): form = SQLFORM.factory( Field('tags_ava','list:string',label=T('Tags'), requires = IS_EMPTY_OR(IS_IN_SET(tags_ava_set)), widget=SQLFORM.widgets.options.widget), formstyle='divs', submit_button ='Search' ) reset = INPUT(_type='button',_id="reset_all",_value=T('Reset')) form.append(reset) if form.process().accepted: i would with click on the link in view 2: - open view2 - fill the field 'tags_ava' with URL arguments - click the button in view2 and i would like also to use the function2/view2 alone (without comming there from view1) is this possible? andrej --