JoshF

Results 10 comments of JoshF

Ok, that will work for some of my custom components. I have one that uses PrimeNGs autocomplete (https://www.primefaces.org/primeng/#/autocomplete). Works fine all the way up to submitting as the field value...

Thanks for that. Also, when overriding the loadItems method, when setting the items as they do in their Formio.makeRequest ... (this.setItems(response, !!search)... do I simply run this.setItems(myjsonresponse, !!search)? Then define...

Hopefully this helps someone. This is what my API driven custom component ended up looking like in the end (ignore the mess. Note that CIMService is my API calls): `export...

``` Customer {{val.CUSTOMER_NAME}} {{val.CUSTOMER_NAME}} Loading customers... Select Vendor Site {{site.ADDRESS}} Select Site Contact {{site.FULL_NAME}} ``` Note there are three form inputs here. Because I am lazy, I return all three...

Not sure what you mean by 'regular edit form'? Did you create your custom configuration as well? Something like: ![image](https://user-images.githubusercontent.com/61521231/81218389-210f0200-8fac-11ea-9926-bdcd316b550a.png) Then you have to add it to the app.module.ts like...

Here is mine, however I am looking at it going "Whaaaat?" (selectedState is from a different custom one I did. So this is a copy n paste mess, but maybe...

> any github repo for this pls > I am stuck with issue of emmiting an array from a custom component which is not captured Did you try converting the...

Here is a sample of a custom component I did that ends with an array. Hopefully it helps you in some way: `export class SelectResponsibilitiesComponent implements FormioCustomComponent{ constructor( private CIM:...

I am afraid I can't help too much here. I never use Form.IO to display the data submitted in my use cases. I would guess you have to take the...

@adhonay What specific sample do you need? I provided samples above (though its a mess lol).