This is a change that happened before RC1, and it's documented in the Plum help where it applies. Though you can find it when you read the docs for the tags on which it applies, a quick way to find all these references is to search for "tablename_columnname" in the help.
The whole "tablename_columnname" syntax was a workaround to a bigger issue that we have since resolved, and are planning to remove this limitation in Plum V1.1. Respectfully, Adam Phillip Churvis Member of Team Macromedia http://www.ProductivityEnhancement.com Download Plum and other cool development tools, and get advanced intensive Master-level training: * C# & ASP.NET for ColdFusion Developers * ColdFusion MX Master Class * Advanced Development with CFMX and SQL Server 2000 ----- Original Message ----- From: <[EMAIL PROTECTED]> To: <[email protected]> Sent: Saturday, January 22, 2005 10:15 AM Subject: [plum] Concatenation in List 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 ********************************************************************** You can subscribe to and unsubscribe from lists, and you can change your subscriptions between normal and digest modes here: http://www.productivityenhancement.com/support/DiscussionListsForm.cfm **********************************************************************
