Hello all,
I have a requirement to enable users to search for a location (custom entity) using civic and street name e.g. 123 Main St. At the moment CRM allows us to do quick find only based on one column, however we have two fields: new_civic and new_street thus we need to enable users to search for an address (civic and street) instead of only based on one column (civic or street).
I created a new field on the location form called new_address and I used the following code to concatenate civic and street to populate the new field in the OnLoad event of the location form:
{ crmForm.all.new_address.DataValue = crmForm.all.new_civic_number.DataValue + " " + crmForm.all.new_streetname.DataValue; }
However the new address field does not get populated when looking at the locations view.
Is there any solution to this requirement?
Your feedback would be greatly appreciated.
Thanks