AutoCompleteOptions.cs 659 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Bowin.Web.Controls.Mvc
  6. {
  7. public class AutoCompleteOptions : BaseControlOptions
  8. {
  9. public int? Width { get; set; }
  10. public int? ScrollHeight { get; set; }
  11. public bool? MatchContains { get; set; }
  12. public bool? MustMatch { get; set; }
  13. public bool? AutoFill { get; set; }
  14. public string CustomFormatterFun { get; set; }
  15. public string Url { get; set; }
  16. public string TextField { get; set; }
  17. public string ValueField { get; set; }
  18. public object DefaultValue { get; set; }
  19. }
  20. }