I'm in the midst of ensuring XHTML compliance against the validator at: http://validator.w3.org (the definitive validator IMHO).
The following is being correctly identifed as being invalid:
The following is being correctly identifed as being invalid:
<div id="ctl00_MainContent_AlertsCardGrid" class="RadGrid RadGrid_Office2007"> <!-- 2009.3.1314.35 --><table cellspacing="0" accesskey="T" . . .
Access key is NOT VALID on a <table> element.
I have done a workaround for this issue by using a <a> element. One possible correct solution is shown below
<div id="ctl00_MainContent_AlertsCardGrid" class="RadGrid RadGrid_Office2007"> <!-- 2009.4.1914.35 --><a accesskey="T" name="AccountSummaryGrid"></a>
<table cellspacing="0" . . .
This issue is in other Telerik Controls (and rampant in Microsoft's AspNet Control!)
"
The following elements support the accesskey attribute: A, AREA, BUTTON, INPUT, LABEL, and LEGEND, and TEXTAREA."
from http://www.w3.org/TR/html401/interact/forms.html#h-17.11.2. Placing it on ANY OTHER ELEMENTS will cause the page to fail validation.