You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
675 B
19 lines
675 B
<!-- $Id: brand_search.htm 2009-05-04 liuhui $ -->
|
|
<div class="form-div">
|
|
<form action="javascript:search_brand()" name="searchForm">
|
|
<img src="images/icon_search.gif" width="26" height="22" border="0" alt="SEARCH" />
|
|
{$lang.keyword} <input type="text" name="brand_name" size="15" />
|
|
<input type="submit" value="{$lang.button_search}" class="button" />
|
|
</form>
|
|
</div>
|
|
|
|
<script language="JavaScript">
|
|
function search_brand()
|
|
{
|
|
listTable.filter['brand_name'] = Utils.trim(document.forms['searchForm'].elements['brand_name'].value);
|
|
listTable.filter['page'] = 1;
|
|
|
|
listTable.loadList();
|
|
}
|
|
|
|
</script>
|
|
|