コード例 #1
0
        public MultiSelectTemplateParameters
        (
            [Comments("XAML template for the control.")]
            [NameValue(AttributeNames.DEFAULTVALUE, "MultiSelectTemplate")]
            string templateName,

            [Comments("Placeholder text.")]
            [NameValue(AttributeNames.DEFAULTVALUE, "(Courses)")]
            string placeholderText,

            [ParameterEditorControl(ParameterControlType.ParameterSourcedPropertyInput)]
            [NameValue(AttributeNames.PROPERTYSOURCEPARAMETER, "fieldTypeSource")]
            [Comments("Update fieldTypeSource first. Property name for the text field.")]
            string textField,

            [ParameterEditorControl(ParameterControlType.ParameterSourcedPropertyInput)]
            [NameValue(AttributeNames.PROPERTYSOURCEPARAMETER, "fieldTypeSource")]
            [Comments("Update fieldTypeSource first. Property name for the value field.")]
            string valueField,

            [Comments("The model element type for the muli-select list. Click the function button and use the configured GetType function.  Use the Assembly qualified type name for the type argument.")]
            Type modelType,

            [Comments("Loading text is useful when the cache has expired and the items source is being retrieved.")]
            [NameValue(AttributeNames.DEFAULTVALUE, "Loading ...")]
            string loadingIndicatorText,

            [Comments("Single object used for defining the selector lambda expression e.g. q => q.OrderBy(s => s.FullName).Select(a => new InstructorModel() {ID = a.ID, FullName = a.FullName})")]
            SelectorLambdaOperatorParameters textAndValueSelector,

            [Comments("Includes the source URL. May specify model and data types if we use the URL for multiple types.")]
            RequestDetailsParameters requestDetails,

            [ParameterEditorControl(ParameterControlType.ParameterSourceOnly)]
            [Comments("Fully qualified class name for the model type.")]
            string fieldTypeSource = "Enrollment.Domain.Entities"
        )
        {
            TemplateName         = templateName;
            PlaceholderText      = placeholderText;
            TextField            = textField;
            ValueField           = valueField;
            ModelType            = modelType;
            LoadingIndicatorText = loadingIndicatorText;
            TextAndValueSelector = textAndValueSelector;
            RequestDetails       = requestDetails;
        }
コード例 #2
0
        public DropDownTemplateParameters
        (
            [Comments("XAML template for the picker.")]
            [NameValue(AttributeNames.DEFAULTVALUE, "PickerTemplate")]
            string templateName,

            [Comments("Title text.")]
            [NameValue(AttributeNames.DEFAULTVALUE, "Select (Entity)")]
            string titleText,

            [ParameterEditorControl(ParameterControlType.ParameterSourcedPropertyInput)]
            [NameValue(AttributeNames.PROPERTYSOURCEPARAMETER, "fieldTypeSource")]
            [Comments("Update fieldTypeSource first. Property name for the text field.")]
            string textField,

            [ParameterEditorControl(ParameterControlType.ParameterSourcedPropertyInput)]
            [NameValue(AttributeNames.PROPERTYSOURCEPARAMETER, "fieldTypeSource")]
            [Comments("Update fieldTypeSource first. Property name for the value field.")]
            string valueField,

            [Comments("Loading text is useful when the cache has expired and the items source is being retrieved.")]
            [NameValue(AttributeNames.DEFAULTVALUE, "Loading ...")]
            string loadingIndicatorText,

            [Comments("Single object used for defining the selector lambda expression e.g. q => q.OrderBy(s => s.FullName).Select(a => new InstructorModel() {ID = a.ID, FullName = a.FullName})")]
            SelectorLambdaOperatorParameters textAndValueSelector,

            [Comments("Includes the source URL. May specify model and data types if we use the URL for multiple types.")]
            RequestDetailsParameters requestDetails,

            [Comments("Used the dropdown or multiselect items change conditionally at runtime.  Add a flow module to define a new selector (SelectorLambdaOperatorParameters) at run time.  Set reloadItemsFlowName to the flow name.")]
            string reloadItemsFlowName = null,

            [ParameterEditorControl(ParameterControlType.ParameterSourceOnly)]
            [Comments("Fully qualified class name for the model type.")]
            string fieldTypeSource = "Enrollment.Domain.Entities"
        )
        {
            TemplateName         = templateName;
            TitleText            = titleText;
            TextField            = textField;
            ValueField           = valueField;
            LoadingIndicatorText = loadingIndicatorText;
            TextAndValueSelector = textAndValueSelector;
            RequestDetails       = requestDetails;
            ReloadItemsFlowName  = reloadItemsFlowName;
        }