We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date

with Search icon

I need a sample textbox with search icon

Thanks

1 Reply 1 reply marked as answer

PM Ponmani Murugaiyan Syncfusion Team June 22, 2020 05:51 AM UTC

Hi Vin, 

Greetings from Syncfusion support. 

We can add the icon in front or end of the textbox by using our public method called “addIcon”. Kindly refer the below code example.  
 
[app.component.ts] 
 
public onCreate(args: any) :void { 
    this.textboxObj.addIcon("append", "e-icons e-search"); 
} 
 
 
[app.component.css] 
 
.e-search:before { 
    content: '\e993'; 
} 
 
 
[app.component.html] 
 
<ejs-textbox id="textbox" #default placeholder="Enter your name" floatLabelType="Auto" (created)="onCreate($event)"></ejs-textbox> 
 
Output: 
 
 
 
 


Please get back us, if you need further assistance. 

Regards, 
Ponmani M 


Marked as answer
Loader.
Live Chat Icon For mobile
Up arrow icon