i have a small issue , i just want to move the search area bellow the contact list , does any one know how ?
thanks ,
i have a small issue , i just want to move the search area bellow the contact list , does any one know how ?
thanks ,
You should need to create a view.list.php and modify any function to render the ListView prior to Search Form.
Cheers
André Lopes
DevToolKit / Project of the Month - June 2009
Lampada Global Services- Open Source Solutions
Avenida Ipiranga, 318
Bloco B - CJ 1602
São Paulo, SP 01046-010
Brazil
Office: +55 11 3237-3110
Mobile: +55 11 7636-5859
e-mail: andre@lampadaglobal.com
Lampada Global delivers offshore software development and support services to customers around the world.
Lampada is proud to be a SugarCRM Gold Partner, revolutionizing Customer Relationship Management.
I DO NOT answer questions through PM and Email. If you need some help post your question into SugarForum.
its ok , i think i got it ,
for any one need , here goes .
1st u need to create a view.list.html in mod*/view/
then , use this ,
///////////////////////////////////////////
function listViewProcess(){
$this->processSearchForm();
$this->lv->searchColumns = $this->searchForm->searchColumns;
if(!$this->headers)
return;
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 get_form_header($GLOBALS['mod_strings']['LBL_LIST_FORM_TITLE'] . $savedSearchName, '', false);
echo $this->lv->display();
echo $this->searchForm->display($this->headers); <----
}
}
pls let me know if any one have a better solution ,
thanks.
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks