Last active
December 11, 2019 22:34
-
-
Save moderndeveloperllc/4e007127c8746c632a5554129badb3a9 to your computer and use it in GitHub Desktop.
vaadin-accordion - click listener not working?
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<iron-form id="userForm"> | |
<form> | |
<vaadin-form-layout .responsive-steps="${this.steps}"> | |
<vaadin-form-item> | |
<vaadin-accordion id="aclList" opened="null"> | |
<vaadin-accordion-panel theme="small"> | |
<div slot="summary">Access Control List (Advanced use only)</div> | |
<div id="checkboxGroups">${this._displayAclList(this.jwt['usr']['aclList'])}</div> | |
</vaadin-accordion-panel> | |
</vaadin-accordion> | |
</vaadin-form-item> | |
<vaadin-button theme="primary" id="userFormSubmitButton" disabled>Edit/Add User</vaadin-button> | |
<vaadin-button id="userFormResetButton">Reset</vaadin-button> | |
</vaadin-form-layout> | |
</form> | |
</iron-form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment