Click here to Skip to main content
15,886,724 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I have inserted table(employee) in database.
fields are Name Mobile job type email etc.

now i want to update employee table in datalist,when i binding data to datalist i want to hide job type(dropdownlist).
how can i hide ..

Thanks in advance
Posted

 
Share this answer
 
I would use the visibility style through javascript.


JavaScript
document.getElementById('client-side id of element').style.visibility = "hiddden";


When you fire the request, you set it to "hidden", when it's done to "visible".

hope this helps.
 
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