Inheritance: Ext.Net.AbstractSelectionModel.Config
        /// <summary>
        ///
        /// </summary>
        public RowSelectionModel.Builder RowSelectionModel(RowSelectionModel.Config config)
        {
#if MVC
            return(new RowSelectionModel.Builder(new RowSelectionModel(config)
            {
                ViewContext = this.HtmlHelper != null ? this.HtmlHelper.ViewContext : null
            }));
#else
            return(new RowSelectionModel.Builder(new RowSelectionModel(config)));
#endif
        }
Exemplo n.º 2
0
 /// <summary>
 ///
 /// </summary>
 public Builder(RowSelectionModel.Config config) : base(new RowSelectionModel(config))
 {
 }
Exemplo n.º 3
0
 /// <summary>
 ///
 /// </summary>
 public RowSelectionModel.Builder RowSelectionModel(RowSelectionModel.Config config)
 {
     return(new RowSelectionModel.Builder(new RowSelectionModel(config)));
 }