Giter Club home page Giter Club logo

Comments (1)

mehmetotkun avatar mehmetotkun commented on June 21, 2024

Because targetId option cannot be setted as template. {{}} markap need to be observed when an option has changable value. nqCollapse is not for this purpose.

You can use nqAccordion directive for repeated collapse. Here is example.
http://quantumui.org/appdoc/documents/quantumui/accordion/

Or, If you want to collapse each panel independently don't have lots of collapsiable panels, I advice you manage each one seperately.

However if it is important for you to use it with ngRepeat you need a custom accordion directive somthing like below.

  app.directive('myCustomAccordion', function () {
        return {
            restrict: 'A',
            compile: function(element, attr) {
                var children = element.find('> .panel');
                angular.forEach(children, function (child, key) {
                    var childEl = angular.element(child),
                    target = childEl.find('.panel-collapse');
                    if (target.length) {
                        var id = target.attr('id')
                        if (!id) {
                            id = 'mypanels' + Math.floor((Math.random() * 1000) + 1).toString()
                            target.attr('id', id)
                        }
                        var link = childEl.find('.panel-title > a');
                        if (!link.length)
                            link = childEl.find('.panel-title');
                        if (!link.length)
                            link = childEl.find('.panel-heading');
                        if (link.length) {
                            link.attr('target-id', '#' +id);
                            link.attr('nq-collapse', '');
                        }
                    }
                });
            }
        };
    })

and you html should be like below

 <div class="panel-group" data-my-custom-accordion="">
    <div class="panel panel-default" ng-repeat="product in selectedNode.Products">
          <div class="panel-heading">
                 <h4 class="panel-title">
                       <a role="button" tabindex="0">
                                {{product.DisplayName}}[{{product.ProductId}}]
                       </a>
                    </h4>
         </div>
         <div class="panel-collapse">
               <div class="panel-body">
                            {{product.LongDescription}}
                 </div>
        </div>
    </div>
</div>

from quantumui.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.