This topic is locked

Help in Lookup wizard

3/13/2008 11:49:00 AM
PHPRunner General questions
F
Fawaz author

Hello,

I have a field called user_id.

I want to display user_firstName, user_Surname instead of user_id.

SO I used Lookup wizard, and I chose <custom expression> then I used: concat(user_firstName,', ',user_Surname)

However AJAX only works for user_firstName not for user_Surname

How do I fix this?

Thanks.

Fawaz

J
Jane 3/14/2008

Fawaz,
you can do it editing generated ..._lookupsuggest.php file manually.

Find this code:

LIKE '....%'



and replace it with this one:

LIKE '%....%'