How to display a tooltip for a dropdownlist

Hi Support:

Is there a way to apply the title propery to the dropdownlist in order to show a tooltip when the mouse hover this control.

Thanks

David

1 Reply

KV Karthikeyan Viswanathan Syncfusion Team September 1, 2017 07:35 AM UTC

Hi David,   
 
 Thanks for contacting Syncfusion support. 
 
Yes, You can render the Tooltip for DropDownList title. 
 
Please refer the below code example: 
 
<code> 
<ej-drop-down-list id="selectCompany"  show-checkbox="true" width="100%" create="drpcreate" watermark-text="Select a company">  
                <e-datamanager url="//js.syncfusion.com/demos/ejServices/Wcf/Northwind.svc/Customers" cross-domain="true"></e-datamanager> 
                <e-drop-down-list-fields text="CompanyName" value="ContactName" /> 
            </ej-drop-down-list> 
 
function drpcreate(sender) {            this.wrapper.ejTooltip({content:" selectCompany "});        }
 
 
</code> 
 
 
Regards,   
Karthikeyan V. 


Loader.
Up arrow icon