123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Bowin.Web.Controls.Mvc
- {
- public class AutoCompleteOptions : BaseControlOptions
- {
- public int? Width { get; set; }
- public int? ScrollHeight { get; set; }
- public bool? MatchContains { get; set; }
- public bool? MustMatch { get; set; }
- public bool? AutoFill { get; set; }
- public string CustomFormatterFun { get; set; }
- public string Url { get; set; }
- public string TextField { get; set; }
- public string ValueField { get; set; }
- public object DefaultValue { get; set; }
- }
- }
|