EditSyntax for value reference
You can automate text generated for each item by referencing property or attribute values you enter in Add item form. The following syntax can be use with property and attribute values, and in the item template.
This way you can have property reference an attribute and then reference that property in the template.
Values used are taken from the input fields in Add item form.
Text is case insensetive, so "Value" or "value" are the same thing, and so are "Auction Title" and "auction title"
- ${value} or ${.} - property value from the property of the same name as the current column name.
- Having only ${.} or ${value} for the cell value is the same as keeping the cell blank.
- This should be only used in cases when you want to combine text you enter for the property with something other text. For example "${.}" is pointless, but you could have "${.} Size 25" to combine text you enter with " Size 25".
- ${properte name} like ${auction title} - gets the value from the specified property. "Auction title" in this case.
- ${a.name} or ${attribute.name} or ${attributes.name} like ${a.color} - gets the value from the attribute with the specified name.
For example:
If "Auction title" is "sneakers" and "Color" attribute is "red" - "${auction title} of color ${a.color}" in item template for "Description" will generate a new item with "Description" set to "sneakers of color red".