Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
468
set ToolTip in wdc_InvalidDateEntered(oDateChooser,oInvalidEventArgs,oEvent)
posted

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.

Parents
  • 7694
    Suggested Answer
    posted

    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.

Reply Children
No Data