Hi guys,
I am trying to use the lookup widget for a field, and it works fine, but I have not been able to clear the value in the field once its been selected, I can only replace it with another.
So, I am wondering If there is a way to clear value from a field using the lookup widget and also how to use the valuelist to show more then 1 field of the target table in the list and view action.
The current value in the valuelist is
[Members]
__sql__ = "SELECT MemberID, MemberGivenName FROM Member"
With this view and list action only show the given name, I have tried
[Members]
__sql__ = "SELECT MemberID, MemberGivenName, MemberFamilyName FROM Member"
and it still shows only the given name, I know that in the __sql__ can only pull 2 fields by looking in the valuelist help but I was hoping that there is a way to get 1 more.