This is a migrated thread and some comments may be shown as answers.

[Solved] Seems a defect in the Q1 2010 release

1 Answer 58 Views
Grid
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Richard Guo
Top achievements
Rank 1
Richard Guo asked on 25 Feb 2010, 07:12 PM
GridHtmlBuilder.cs

        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

Sort by
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.
Tags
Grid
Asked by
Richard Guo
Top achievements
Rank 1
Answers by
Atanas Korchev
Telerik team
Share this question
or