Posted 06 Oct 2016 Link to this post
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.
Posted 10 Feb 2017 Link to this post
<
ClientSettings
>
ClientEvents
OnGridCreated
=
"gridCreated"
/>
</
function
gridCreated(sender, args) {
$(sender.get_masterTableView().get_element()).removeAttr(
"summary"
);
// alternative approach
//sender.get_masterTableView().get_element().summary = "";
}