Can some one pleasy correct the Render Method of the TabPanel
this:
base.AddAttributesToRender(writer);
writer.AddAttribute(HtmlTextWriterAttribute.Id, ClientID);
writer.AddAttribute(HtmlTextWriterAttribute.Class, "ajax__tab_panel");
to:
CssClass += " ajax__tab_panel";
base.AddAttributesToRender(writer);
is duplicating de id tag and de class tag
Tank's
this:
base.AddAttributesToRender(writer);
writer.AddAttribute(HtmlTextWriterAttribute.Id, ClientID);
writer.AddAttribute(HtmlTextWriterAttribute.Class, "ajax__tab_panel");
to:
CssClass += " ajax__tab_panel";
base.AddAttributesToRender(writer);
is duplicating de id tag and de class tag
Tank's