November Happy Hour will be moved to Thursday December 5th.
November Happy Hour will be moved to Thursday December 5th.
You are creating a custom element and you need provide method for geting or binding its value. Forms will call getCustomElementValue to retrive the value. You should override this method to calculate value (which contains multiple optional fields) and return to the form processing submit. Please see the example of creating custom element in sample here: https://github.com/episerver/EPiServer.Forms.Samples (see AddressElement). And how to override getCustomElementValue: https://github.com/episerver/EPiServer.Forms.Samples/blob/master/ClientResources/ViewMode/EPiServerFormsSamples.js
Hope this help.
What version of Forms do I need to ovveride the getCustomElementValue method?
Okei, we are running 4.10 but it doesn't seem like this method is ever called. I just tried something minimalistic just to see.
(function ($) { // extend the EpiForm JavaScript API in ViewMode $.extend(true, epi.EPiServer.Forms, { Extension: { // OVERRIDE, process to get value from datetime picker element getCustomElementValue: function ($element) { console.log($element); // if current element is not our job, let others process return originalGetCustomElementValue.apply(this, [$element]); } } }); })($$epiforms || $);
You need mark your element as a custom one like:
<div class="Form__Element Form__CustomElement FormAddressElement
Hi!
So I've been asked to create a custom form element which basically should act like a dynamic table.
In Episerver our client can define what fields to include & anyone using the form should be able to fill in those fields, but also add additional rows of fields.
An example would be a signup form where you can add additional people. So for each person they can fill in multiple fields like name, email etc..
My approach was going to something like this for the ElementBlock, which for now only includes a contentarea for all the fields.
For my view I was going to do something like the snippit below, using the PropertyFor method:
+ some javascript for adding additional rows.
This renders fine, but i'm not getting the inputdata in the form submission. I guess this is because the name/id of the fields rendered in the "PropertyFor" method is wrong compared to what the form is expecting.
My question is then, what alternatives do I have? I would like to keep the ContentArea since this allows the client to add all the available fields with proper validation etc.
Thanks in advance,
Håvard.