How to add checkbox to angular menu

岁酱吖の 提交于 2020-01-25 06:42:12

问题


My menu looks like this . I have a worker menu which specifies the list of menu items .just the names alone.I would like to add a checkbox for selection before the menu text.I would like to add a checkbox in menu Any help is much appreciated

<pre> $scope.workerMenu = [
            {
                description: vocabulary.scope.worker.header.menu.apples,
                action: function () {
                    displayWorkerProfile();
                }
            },
            {
                description: vocabulary.scope.worker.header.menu.oranges,
                action: function () {
                    validateDeletion()
                }
            }
        ]</pre>

来源:https://stackoverflow.com/questions/49860471/how-to-add-checkbox-to-angular-menu

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!