- Code: Select all
function titleColumn(){
return "BWA_ID";
}
I do not want "BWA_ID" in the spot. I need it to be a few different fileds such as
- Code: Select all
function titleColumn(){
return "StreetNo"."StreetName"."City";
}
I need more than one field as a description in a many to many relationship to pull up existing records. Its very illogical to pull records based on a single field in my application.
Thanks for taking the time to read this!
Rich