Dropdown list

  • Thread starter Thread starter Vikas Kumar
  • Start date Start date
V

Vikas Kumar

http://www.persquareyard.com/

in the above site in Select Property dropdownlist we have headings like
Residential or Commercial which we are not able to select but can select
their sub categories only
like all things under Residential but not able to select Residential
how can we do this
i am using .Net Framework 1.1
 
I see you achieved your goal. How did you do it?
 
There is an HTML tag you can use called OPTGROUP which gives you this ability. Here's a sample:

<select>
<optgroup label="Numbers">
<option label="1">1</option>
<option label="2">2</option>
<option label="3">3</option>
</optgroup>
<optgroup label="Letters">
<option label="A">A</option>
<option label="B">B</option>
<option label="C">C</option>
</optgroup>
</select>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top