or
Hi,
As per Section 508, a user should be able to navigate through the screen/controls using Keyboard. To achieve this in Asp.Net we have a property exposed to each control namely "Tab Order" which actually signifies the control focus sequence when using the Tab key from the key board.
Is there a provision to have a Tab Order Feature enabled for all the Kendo Controls?
Thanks & Regards,
Manoj Kapoor
<WebMethod()> Public Shared Function getperson() As String Dim query = db.Employees.Select(Function(q) New With {q.EmployeeID, q.LastName, q.BirthDate}) Dim sb As New StringBuilder For Each rows In query sb.Append(rows.EmployeeID & ":" & rows.LastName & ",") Next Return Convert.ToString(sb) End Function