I have members and I need to bill them once a year. I added membership date to a custom field. How can I add Custom fields to the "Quick Search" so I can find them? Right now it just shows (Name) & (ID).
hey orville
refer:
- http://code.google.com/p/simpleinvoices/source/browse/trunk/modules/invoices/manage.js.php
add a new item in the searchitems section - note: name has to = the column name
let us know how you go
cheers
justin
Hey guys! I came across this page and need to do something very similar, except its to be able to do a quick search of the customer list by street address. The link no longer works, but I tried to modify the manage.js.php in customers under modules just to see what I could see. My searchitems section now looks like this:
searchitems : [
{display: '{/literal}{$LANG.id}{literal}', name : 'id'},
{display: '{/literal}{$LANG.name}{literal}', name : 'name', isdefault: true},
{display: '{/literal}{$LANG.street_address}{literal}', name : 'street_address'}
],
However that's not working so well... what else do I need to do? Or am I just totally off base here? Much thanks!!!
],
-Brendan