ListView Clear Filter not Working

I am trying to use ListView clear filter but it returns me this error.

Uncaught ReferenceError: selectBox is not defined.

By the way my listview was displayed using this function in view.list.php

function listViewProcess(){
$this->processSearchForm();
$this->params[‘custom_where’] = ’ AND pi_prospect_inquiry_cstm.inquiry_date_c >= last_day(now()) + interval 1 day - interval 3 month’;
if (empty($_REQUEST[‘search_form_only’]) || $_REQUEST[‘search_form_only’] == false) {
$this->lv->setup($this->seed, ‘include/ListView/ListViewGeneric.tpl’, $this->where, $this->params);
$savedSearchName = empty($_REQUEST[‘saved_search_select_name’]) ? ‘’ : (’ - ’ . $_REQUEST[‘saved_search_select_name’]);
echo $this->lv->display();
}
}

I am using v7.10

I just tried all related Repairs and it came back.