Hi,
Im lost. I need dropdown search field like below. How I can do that?
Timo
Hi,
Im lost. I need dropdown search field like below. How I can do that?
Timo
Please, clarify you needs.
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.
Andopes,
Accounts have their special products and those are entered when creating accounts. Now I need to search by product and there are like 30 products available. So if I can select one product from dropdown field and hit search I get all accounts who have this product.
Timo
Any help with this issue ? Just a basic search field.. choose from dropdown, how to do this ?
It is pretty possible but it requires php and sugarcrm development skills.
What about your skills?
You need to:
1. Create a php script containing a class which extends the default Account class: custom/Modules/AccountListView.php;
2. create a custom controller for Accounts (custom/modules/Accounts/controller.php);
3. Implement into controller the method action_listview, which will redefine the bean attribute:
4. Implement into AccountListView the method create_new_list_query which will override the $ret_array elements according to your needs, consider the products module when searching;PHP Code:function action_listview() {
$this->view = 'list';
$this->bean = new AccountListView();
}
5. Create an extended vardefs for Accounts where you will add a non-db dropdown fields containing the products dropdown
6. Add this field into Accounts searchdefs.php
7. Go to Admin -> Repair -> Rebuild Extensions
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.
Thanks for this andopes, I will try to manage!
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks