I have a field used by a user to select a company built as follows (with a PassThru code):
<select name="Choices" size="5" multiple onDblClick="List();"><Computed Value></select>
and the value for the
<Computed text> is:
keywords:=@DbColumn("":"NoCache";"";"(Companies)";1);
"<option value=\""+keywords+"\">"+keywords
I need to have 2 fields (eg. City and Country) in the same form that need to keep the city and the country of the company that was selected ....
how can I do that ?
PS. I can add two columns into the (Companies) view with the City and the Country information but.... how can I get dynamically these data and to put it into the form on the WEB?