Click here to Skip to main content
16,016,425 members
Please Sign up or sign in to vote.
2.00/5 (1 vote)
See more:
Hi,
To improve the performance of dropdownlist to load thousands of records quickly I am using the existing script.
In that where ever dropdown is there I am using the following code in JQuery to show textbox along with a button beside it and when clicks on button loading the data in textbox fastly
For that I have to add the image to the button
this.button = $("button type='button'>^  /button>")

So How can I achieve this? Kindly explain

What I have tried:

To improve the performance of dropdownlist to load thousands of records quickly I am using the existing script.
In that where ever dropdown is there I am using the following code in JQuery to show textbox along with a button beside it and when clicks on button loading the data in textbox fastly
Posted
Updated 23-Mar-16 5:49am
Comments
Karthik_Mahalingam 23-Mar-16 3:46am    
you can use css to add image to the button. refer this link
your question is not so clear, Please add more info specifically.
Member 8557048 23-Mar-16 4:01am    
Actually i am generating this button and text boxes dynamically and if there is dropdownlist beside that I am adding the button element ,for that for every button i have to show image background
this.button = $("<button type='button' >^  </button>")
.attr("tabIndex", 1)
.attr("title", "Show All Items")
.attr("width", "20px")
like this can I show any image background on this please help

1 solution

See, for example, Edit fiddle — JSFiddle[^].

If this is not what you want, please explain. Your question is quite unclear. It's unclear how the button problem is related to "thousands of record" in a drop-down list, but it's quite certain that you should not show so many items in a drop-down list, and not even on the whole page; it would be unusable anyway.

—SA
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900