Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
HTML5 deprecates the summary attribute on a <table> element. So I want to assign an empty text to that attribute.
How can I do that?
Your help is appreciated.
<
ClientSettings
>
ClientEvents
OnGridCreated
=
"gridCreated"
/>
</
function
gridCreated(sender, args) {
$(sender.get_masterTableView().get_element()).removeAttr(
"summary"
);
// alternative approach
//sender.get_masterTableView().get_element().summary = "";
}