Hi,
i have a table on my report. The Table is dynamic.
Now i would change the backgroundColor of a specified row.
How can i do something like this?
table.Bindings.Add( new Telerik.Reporting.Binding("Style.Background.Color"),"=IIF(Fields.1 == 'Summe', 'Red','Green')");
I found the problem.
I have to bind to TextBox, not to Table....
textBoxTable.Bindings.Add(new Telerik.Reporting.Binding("Style.BackgroundColor", "=IIF(Fields.1 = \"Summe\", \"#6293BB\",\"Transparent\")"));