Skip to content

Better Forms Picker #310

Closed Answered by leekelleher
TRexStark asked this question in Question
Discussion options

You must be logged in to vote

@TRexStark I have made a custom Umbraco Forms data-source for Data List... feel free to use/adapt/modify it...

using System;
using System.Collections.Generic;
using System.Linq;
using Umbraco.Community.Contentment.DataEditors;
using Umbraco.Core.PropertyEditors;
using Umbraco.Forms.Core.Services;
using UmbConstants = Umbraco.Core.Constants;

namespace Umbraco.Community.Contentment.Forms
{
    public sealed class UmbracoFormsDataSource : IDataListSource, IDataListSourceValueConverter
    {
        private readonly Lazy<IFormService> _formService;

        public UmbracoFormsDataSource(Lazy<IFormService> formService)
        {
            _formService = formService;
        }

        public 

Replies: 2 comments

Comment options

You must be logged in to vote
0 replies
Answer selected by leekelleher
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
2 participants