We're doing some testing on Telerik Reporting Q2 2013 for compatibility with our current reports. First we're using a small function for getting the report on the enter button within textboxes.
What we're seeing in the code behind is that whatever radtextbox your cursor is in and is being edited is not being sent to the code behind one the first enter click. However on the second it is. Thus it always stays a enter stroke behind, unless you leave the radtextbox by physically click the get report button.
Hast anyone else seen this issue?
function
SubmitIt(sender, args) {<br>
var
c = args.get_keyCode();<br>
if
(c == 13) {<br>
$get(
'<%=btnGetReport.ClientID %>'
).click();
}
}
What we're seeing in the code behind is that whatever radtextbox your cursor is in and is being edited is not being sent to the code behind one the first enter click. However on the second it is. Thus it always stays a enter stroke behind, unless you leave the radtextbox by physically click the get report button.
Hast anyone else seen this issue?