or
I am using an HtmlTextBox to render an anchor with a link to a page within my website. The links renders correctly in silverlight viewer but there is no interactivity, it’s just static. Is this supported within the silverlight report viewer?
If not, how can I get the Action property to open in a new window instead of loading in the current window?
Thank you.
Various formatting options are available to control the text presentation:
int counter=0; |
private void detail_ItemDataBound(object sender, EventArgs e) |
{ |
Telerik.Reporting.Processing.DetailSection section = sender as Telerik.Reporting.Processing.DetailSection; |
if (section != null) |
{ |
if (counter % 2 == 0) //even row |
{ |
section.ItemDefinition.StyleName = "ReportRow"; |
} |
else //odd row |
{ |
section.ItemDefinition.StyleName = "ReportRowAlt"; |
} |
counter++; |
} |
} |