Hi,
Does this class need to be applied to the div tag you're creating as part of the Derived Column?
If not you can add a
Cell Style Expression to apply this class to cells in the Datasource Grid instead. To do this, select
Expressions on the left hand side of the Datasource Grid Definition window and click
Add. Select
Cell Style Expression from the
Expression Type dropdown and add your classes into the
Row Expression box, making sure to surround it with quotation marks. Lastly select your derived column from the
Selected Column drop down and click Save.
If the class needs to be added to the div tag you're creating as part of the Derived Column, simply add single quotation marks around the classes in the Derived Expression:
FormatString("{0}
", "Title");
Thanks,
Andy