hi friends.

i need a help

how to enable and disable multiple textboxes corresponding a button click
belwo i will show u the image catalogsearc
when i click the check box i want to enable these text fields.. hw it possible please provide a sample codes

or give me a suggetion for editing these values in a jsp page

Recommended Answers

All 2 Replies

hi frd s i have solution for ur problem but i think it is so long time so if still not aware of the solution maile(mahendar.k.2010@gmail.com) me i will let u know thw solution.

It is very simple.
You can do it using javascript.
You need to call a javascript function on the "onClick" event of the checkbox.
Inside the called function just check if the checkbox is selected? If yes, then enable the textbox elements elements based upon the ids.
like this

document.getElementById("mytxt").disabled=false;

where "mytxt" is the id of your textbox

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.