meteor-autoform-select2
meteor-autoform-select2 copied to clipboard
Custom select2 input type for AutoForm
I cannot get required validation style to get triggered. It seems that select 2 is getting class is-invalid when no option is selected but it shows no red border and...
i am upgrading an ancient app to latest meteor. worked so far, but for autoform-select2 i get: ``` Unexpected object in htmljs in toText ``` my template: ``` {{#autoForm id="sidebar_products_search_field_form"...
I've tried many different ways, but none have worked. How can I use the select event of select2 or how can I know when the value changes? Thanks!
Hi, I am using `afQuickField` with `type="select2"` and `multiple=true`. #### html:- `{{> afQuickField name="Country" type="select2" multiple=true select2Options=s2Opts options=optionsCountry }}` #### js:- ``` s2Opts(){ return { placeholder: "select upto 8 county",...
I am not sure if it is even possible but so far I failed to have one select2 field where I can select multiple cities for the schema below. Any...
I created a field of a schema (CollectionTest) as follows. ``` year: { type: String, label: "Year", autoform:{ type:'select2', options:function () { return[{label:"2013",value:3102},{label:"2014",value:4102},{label:"2015",value:5102}] } } } ``` When I submit...
First thanks @aldeed for this powerful package. I'll like to use this package along with autoForm, simple_schema and collection2 to pull data from collection fields and display them as select-option...
I have one form that includes two more forms and I need that when the second form is updated to show that information in the first Form this way: 1)...
When I submit my form, multiple select2 field sends only null values. If I manually modify within the mongo collection, When I edit the document I can see the values...
Hi, i am using 'afEachArrayItem' to build a row based form for each array item. that works fine, but i have the following issues: 1. to select the first option,...