I am using Twitter Bootstrap 'Split button dropdown' dropdown on hover but 
I am facing
some issue. I want to show the dropdown only when my submit button is 
enabled. Currently
what is happening that even if the submit button is disabled it dispalys 
the dropdown on
mouse hover? 

<div id="RightBtns">
            <div id="SuspendBtns" class="btn-group btn-hover dropup">
                <button id="btnSubmit" class="btn dropdown-toggle"
                    data-toggle="dropdown"                 
                    ng-disabled="!model.activeItem "   >           
                  
                 
                  Submit
                <span class="caret"></span>
                </button>

                <ul class="dropdown-menu">
                    <li ng-click="Agree()">
                        <a href="#" >                     
                           
                            Agree</a>
                    </li>                  
                </ul>
            </div>  
              
        </div>


 #RightBtns div.btn-group:hover ul.dropdown-menu{
          display: block;    
           }

       #RightBtns div.btn-group ul.dropdown-menu{
         margin-top: 0px;    
    }

-- 
You received this message because you are subscribed to the Google Groups 
"AngularJS" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.

Reply via email to