trying to set tooltip in this InvalidDateEntered(oDateChooser,oInvalidEventArgs,oEvent) event.
oDateChooser.ToolTip = "Invalid Date Range";
or
oDateChooser.setToolTip = "Invalid Date Range";
does not work. any clue on how to do this. thanks.
Hello,
You can change the value of ToolTip in client side with JS code below:
function Button1_onclick() { var oCombo = igdrp_getComboById('<%=dateCooser.ClientID%>'); oCombo.inputBox.title = "++++++++++++"; }
Hope this helps.
that worked. thank you.