A
|
aptivus 5/6/2015 |
[size="3"] To help the User pinpoint the needed record I apply a Concat for the Display Field [indent]Table: accounts Link field: accountid Display Field: concat(accountid,' ',name,' ',city,' ',zipcode)[/indent] I set the search for Edit Box with Ajax popup Now the User sees the account id number in line with the Name, City, Zipcode in the Display field but they are, of course, selecting the Link field value as the value to place in the accountid field of the new record. Most of the users could not use the lookup unless they have the additional visual help to confirm they have the right record. However, when the Record is created and Saved on the LIST page I have row after row of entries like this in the Account ID field -- FZ667393 Axis I want this: FZ667393 Logistics Kenosha 53141 TR82229 Locker [color="#2E8B57"] >>> I want this: TR82229 Security Services Pekin 61555 on and on. The actual field in the database is just the accountid sequence as I wanted so that is definitely a good outcome. [/size]
$value = $data['accountid'];
|
A
|
Anapolis author 5/7/2015 |
If I have understood your request, then you should go to the Editor tab fo PhpRunner, select the LIST view of the table of yours, then double click on the field acctnumber and choose "Custom" from View As menu. $value = $data['accountid'];
|