
I'm trying to add JavaScript to allow users to select today's date by pressing "T" key. I've copied the following code from elsewhere in this forum. Sorry, I cannot find original post. The below code does exactly what what we want except the t is showing up in the text. For example, "8/4/2015t" is what is being displayed.
Is there a way to prevent key press from being propagated? Below is demo code that I'm working with.
<telerik:RadDatePicker ID="DatePicker1" runat="server" > <DateInput ClientEvents-OnKeyPress="DateTextBoxKeyPress"/></telerik:RadDatePicker>
function DateTextBoxKeyPress(sender, args) { var s1 = args.get_keyCharacter().toUpperCase(); if (s1 === "T") { var datePicker = sender; var date = new Date(); date.setDate(date.getDate()); datePicker.set_selectedDate(date); }}
As of Q2 2015 SP1 the popup element of RadToolTip cannot be shown if the content is empty. This is a result of an important improvement—http://feedback.telerik.com/Project/108/Feedback/Details/54180.
This change will affect implementation where content of tooltip is populated via the OnClientShow event. The proper usage is handling the OnClientBeforeShow event in order for the tooltip to show up.
You can also examine this online demo (http://demos.telerik.com/aspnet-ajax/tooltip/examples/databasetooltipswithoutlod/defaultcs.aspx) to further see such an implementation.
Hi!
I need your help one more time. I want to puts a button or hyperlink (or something for the user can interact for do any action to the radscheduler) but I don't know how to do it.
I read a lot of manuals and this told me that I have to write any code in javascript, but then when I run the project, it doesn't works...
Can anyone tell me or explain me how I can insert a button or hyperlink in the header of the radscheduler control? And then, the button will have events or I have to add in code.
I wait your responses :)
Regards!

Hi,
I am using Telerik.Web.UI.RadAsyncUpload v4.0.30319
ContentType for MSG Files are always returning as null. I tried uploading file with HtmlInputFile control, and that retrieves it fine. How can I get it to work with RadAsyncUpload ?
Note: I have the mime type (.msg application/vnd.ms-outlook) set in my local IIS where I am running my site.
Thanks
Purna
I want to be able to have a checkbox on the page that when checked, the RadGrid uses paging, when unchecked, the RadGrid shows all results. How can I accomplish this?
Thank you for your help.