Telerik.Web.Mvc.UI.EditorComboBox.EditorComboBox C# (CSharp) Méthode

EditorComboBox() public méthode

public EditorComboBox ( string identifier, IList items ) : System.Collections.Generic
identifier string
items IList
Résultat System.Collections.Generic
        public EditorComboBox(string identifier, IList<DropDownItem> items)
        {
            Items = items;
            Identifier = identifier.ToCamelCase();
            HtmlAttributes = new Dictionary<string, object>() { { "class", "t-" + Identifier } };
        }