I want to have a "Reply" link which scrolls the window down to my radeditor...kind of works now with this
function ReplyClick(sender) {
var editor = $find("<%=txtComment.ClientID%>");
editor.setFocus();
}
Once the user starts to type it moves down...but I dont think they'll know the cursor is in the radeditor unless the entire window moves.
Any ideas?
function ReplyClick(sender) {
var editor = $find("<%=txtComment.ClientID%>");
editor.setFocus();
}
Once the user starts to type it moves down...but I dont think they'll know the cursor is in the radeditor unless the entire window moves.
Any ideas?