meteor-autoform-semantic-ui
meteor-autoform-semantic-ui copied to clipboard
DEPRECATED - Semantic-ui template for aldeed:autoform package.
Schema like ``` logo: { type: String, label: 'Logo', autoform: { afFieldInput: { type: 'cfs-file', collection: 'images', accept: 'image/*' }, afFormGroup: { 'formgroup-class': 'inline' } } } ``` generates an...
Hello @fabienb4, Thanks for your work in this. There's a new version of autoform (6.2.0) but I can't cleanly upgrade to it until you upgrade this one accordingly. Here's the...
Hello, I'm getting the following error coming from this package. Any idea what could be causing this? `TypeError: this.$(this.firstNode).checkbox is not a function. (In 'this.$(this.firstNode).checkbox(this.data.atts.settings)', 'this.$(this.firstNode).checkbox' is undefined)` Thanks, Kris
I have a route to an autoform that is using `afSelect_semanticUI`. When this route is loaded (page load -- entering the URL in the address bar), it always displays `default...
Added subtemplates for afFormGroup that allow for the input to be wrapped with the correct div if the input has labels or icons #48
Hi all, I have the following scheme: ``` javascript uf.attachSchema(new SimpleSchema({ codigo: { type: String, label: "Código" }, unidad: { type: String, label: "Unidad" }, propietarios: { type: Array, optional:...
Hi, I tried adding a leftLabel to a field and got the following: ``` Min raise amount $ ``` In reviewing the SUI docs, it looks like the 'ui labeled...