public IHtmlNode CellTag(GridCell<T> context)
{
IHtmlNode td = new HtmlTag("td")
.Attributes(context.HtmlAttributes); -----should it be ".Attributes(context.Column.HtmlAttributes);"?
Regards,
1 Answer, 1 is accepted
0
Atanas Korchev
Telerik team
answered on 26 Feb 2010, 07:17 AM
Hi Richard Guo,
Actually it should be:
public IHtmlNode CellTag(GridCell<T> context)
{
IHtmlNode td = new HtmlTag("td")
.Attributes(context.Column.HtmlAttributes)
.Attributes(context.HtmlAttributes);
This problem was reported shortly after the release of the Q1 2010 futures.
Greetings,
Atanas Korchev
the Telerik team
Do you want to have your say when we set our development plans?
Do you want to know when a feature you care about is added or when a bug fixed?
Explore the
Telerik Public Issue Tracking
system and vote to affect the priority of the items.