In a past beta version, i was able to concatenate columns in a List following the tag instructions:
 
<cf_DisplayExpressionInList label="Name">
   <cf_DisplayColumnInList table="Profile" column="FirstName" type="varchar(30)">
   <cf_DisplayColumnInList column="LastName" type="varchar(30)">
   #FirstName# #LastName#
</cf_DisplayExpressionInList>
 
 
But in RC2, this results in the following error:  Variable FirstName is undefined. 
 
It does however work when you prepend the local variables with "TableName_".
Specifying the table name in <cf_DisplayColumnInList> had no effect.
 
<cf_DisplayExpressionInList label="Name">
   <cf_DisplayColumnInList table="Profile" column="FirstName" type="varchar(30)">
   <cf_DisplayColumnInList column="LastName" type="varchar(30)">
   #Profile_FirstName# #Profile_LastName#
</cf_DisplayExpressionInList>
 
Is this a change from earlier versions and is it documented anywhere ?   Thanks,
 
 
---Stephen Ansari

Blue Raster LLC
2500 Wilson Blvd Suite 245
Arlington, VA 22201

 
 
 

Reply via email to