I'm looking at the tutorial (https://demos.telerik.com/aspnet-ajax/multicolumncombobox/overview/defaultvb.aspx) and it uses a form of the ASP Embedded Code Blocks to reference the data source column. Is it possible to use conditionals in this code, i.e. If clauses, so that the template can be customized based on the value? I'd like to use it for an address to only show the comma separating Address Line 1 and Line 2 when Line 2 is not null/empty (so you don't have an extraneous comma at the end of the street address). I tried the following code but it doesn't work (the drop-down never appears)
<span>#: Vendor_Address_1 #</span><span>#: If(Vendor_Address_2="","",", " & Vendor_Address_2) #</span>