Brent Ely
Brent Ely
Hi @bagau When no column names are provided, the library attempts to retrieve all the columns (`/items`), but this behavior runs into trouble when options are provided.
Something like these methods? ```javascript sprLib.site().groups().create('QA-Owners') sprLib.site().groups('Dev-Owners').addUser({ id:12345 }) sprLib.site().groups('Dev-Owners').removeUser({ id:12345 }) ```
Great work, thanks @mikemeerschaert !
Thanks @mikemeerschaert !
Documentation updated for new properties: [Presentation Options](https://gitbrent.github.io/PptxGenJS/docs/usage-pres-options/#default-font)
Hi @GustavoDinizMonteiro Can you provide some sample code showing the implementation?
See: Pull #10
The checked state/value is maintained on your original checkbox element. ```html ``` ```javascript document.getElementById('chkToggle1').checked // `true` or `false` ```
Hi @aproquot Thanks for the issue. Accessibility is definitely something we should all consider at design time. I've added `for` properties to both labels:
@jcputney Good feedback. I'll replace the `` elements so users can choose there own label for the control. You mentioned that originally and i completely missed it.