or
var item = new Telerik.Web.UI.RadRotatorItem();
item.Controls.Add(new LiteralControl("<
div
>1</
div
>"));
rotator1.Items.Add(item);
What I would expect is that final keyboard nav would start from my latest mouse click however my mouse click is ignored and, Instead, the keyboard nav picks up from the last row navigated to via the keyboard (where it left off).
It would appear that the selection made by the mouse and keyboard are independent of one another? How should I keep these two methods of selection in sync so that the keyboard follows the latest selection (regardless of what created the selection)?