Click here to Skip to main content
15,881,204 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
the following is the code for my Combobox within a column for the user to choose from.
the combo box i fully fuctional.
as of now the cell where the combobox is present is visible as a regular empty cell
i have to double click on the cell before the small arrow on the right of a combobox to appear and the list then drops down.
how do i get the combobox arrow to be visible at all times so that the user can know for sure that the particular cell is a combox box on the first look?

VB
<ext:Column   DataIndex="BUYERRESPONSE" Text="Meeting review" Resizable="true"  Width="150"  runat="server" Editable="true" Hidden="false">
    <Editor>
         <ext:ComboBox ID= "BUYERRESPONSE"   runat="server">
            <Items>        
              <ext:ListItem Text="YES" Value="YES"></ext:ListItem>
              <ext:ListItem Text="NO" Value="NO"></ext:ListItem>
            </Items>
        </ext:ComboBox>
     </Editor>
</ext:Column>
Posted
Updated 5-Nov-15 6:33am
v2

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