0

I am trying to include checkbox in my page provided by angular material but failing to do so You can find the plunkr here.

<md-content>
            <md-list-item class="md-2-line" ng-repeat="questions in questionsList">
              <div class="md-list-item-text" layout="column">
                <h3>{{questions.question}}</h3>

                <md-checkbox class="md-secondary" ng-repeat="option in questions.options">{{option}}</md-checkbox>

              </div>
              </md-list-item>
          </md-content>

1 Answer 1

1

'ngMaterial' you need to inject ng-material in app.js

like this

var app = angular.module('App', ['ngMaterial'])
Sign up to request clarification or add additional context in comments.

1 Comment

I feel like puking on myself.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.