Sign up ×
Stack Overflow is a community of 4.7 million programmers, just like you, helping each other. Join them; it only takes a minute:

I have an angular app , and have integrated angular-ui-bootstrap , my issue is that the dropdown links are are being blocked by table row , using z-index :

 <div class="panel panel-default">
     <div class="panel-body">
        <div class=" pull-right">
             <!-- Split button -->
            <div class="btn-group invoice_new_item_btn_ul" uib-dropdown>
              <button id="split-button" type="button" class="btn btn-danger"> Add Item </button>
              <button type="button" class="btn btn-danger" uib-dropdown-toggle>
              <span class="caret"></span>
            </button>
               <ul class="invoice_new_item_btn_ul uib-dropdown-menu" role="menu" aria-labelledby="split-button">
                   <li role="menuitem"><a href="" ng-click="vm.addNewChoice()">Action</a></li>
                     </ul>
                     </div>
                    </div>


                <div class="table-responsive">
                    <table class="table table-striped" >

                        <thead>
                        <tr>

                            <th></th>
                            <th>Item Name</th>
                            <th>Type</th>


                        </tr>

                        </thead>
                        <tbody id="search_result">

                        <tr class="odd gradeX" ng-repeat="u in vm.patient.patient_finance_item">
                                <td></td>
                                <td ng-bind="u.item_name"></td>
                                <td ng-bind="u.item_type"></td>



                            </tr>
                        </tbody>
                    </table>
                </div>
                </div>
                </div>

The css/sass :

.invoice_new_item_btn_ul{
  z-index:1000 !important;
}
share|improve this question

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.