This is a migrated thread and some comments may be shown as answers.

ComboBox Templete Problem

2 Answers 84 Views
ComboBox
This is a migrated thread and some comments may be shown as answers.
kiran
Top achievements
Rank 1
kiran asked on 12 Oct 2011, 12:03 PM
Hi
I have used ComboBox control called stocksCombo  in Radgrid
In stocks ComboBox i have used another two ComboBoxes called ProductsCombo  and ItemsCombo in Header Templete
When i clicked the ProductsCombo or ItemsCombo these dropdown lists are hiding behind the stocksCombo control ,
 Is there any way to get these two combos(ProductCombo and ItemsCombo) in front of the StocksCombo

Regards
Kumar

2 Answers, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 12 Oct 2011, 12:35 PM
Hello Kiran,

Try setting the Z index property explicitly for the comboboxes.
CSS:
<style type="text/css">
   .combo1
   {
       z-index:5000 !important;
   }
   .combo2
   {
     z-index:3000 !important;
   }
    </style>

Thanks,
Princy.
0
kiran
Top achievements
Rank 1
answered on 12 Oct 2011, 12:51 PM
Hi

Great
It works , Many thanks

Regards
Kiran
Tags
ComboBox
Asked by
kiran
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
kiran
Top achievements
Rank 1
Share this question
or