Пример #1
0
 public static MvcHtmlString Editor(
     this HtmlHelper html,
     string expression,
     string templateName
     )
 {
     return(TemplateHelpers.Template(
                html,
                expression,
                templateName,
                null /* htmlFieldName */
                ,
                DataBoundControlMode.Edit,
                null /* additionalViewData */
                ));
 }
Пример #2
0
 public static MvcHtmlString Display(
     this HtmlHelper html,
     string expression,
     string templateName,
     string htmlFieldName
     )
 {
     return(TemplateHelpers.Template(
                html,
                expression,
                templateName,
                htmlFieldName,
                DataBoundControlMode.ReadOnly,
                null /* additionalViewData */
                ));
 }
Пример #3
0
 public static MvcHtmlString DisplayFor <TModel, TValue>(
     this HtmlHelper <TModel> html,
     Expression <Func <TModel, TValue> > expression,
     string templateName,
     string htmlFieldName
     )
 {
     return(TemplateHelpers.TemplateFor(
                html,
                expression,
                templateName,
                htmlFieldName,
                DataBoundControlMode.ReadOnly,
                null /* additionalViewData */
                ));
 }
Пример #4
0
 public static MvcHtmlString EditorFor <TModel, TValue>(
     this HtmlHelper <TModel> html,
     Expression <Func <TModel, TValue> > expression
     )
 {
     return(TemplateHelpers.TemplateFor(
                html,
                expression,
                null /* templateName */
                ,
                null /* htmlFieldName */
                ,
                DataBoundControlMode.Edit,
                null /* additionalViewData */
                ));
 }
Пример #5
0
 public static MvcHtmlString DisplayForModel(
     this HtmlHelper html,
     string templateName,
     string htmlFieldName
     )
 {
     return(MvcHtmlString.Create(
                TemplateHelpers.TemplateHelper(
                    html,
                    html.ViewData.ModelMetadata,
                    htmlFieldName,
                    templateName,
                    DataBoundControlMode.ReadOnly,
                    null /* additionalViewData */
                    )
                ));
 }
Пример #6
0
 public static MvcHtmlString DisplayForModel(
     this HtmlHelper html,
     string templateName,
     object additionalViewData
     )
 {
     return(MvcHtmlString.Create(
                TemplateHelpers.TemplateHelper(
                    html,
                    html.ViewData.ModelMetadata,
                    String.Empty,
                    templateName,
                    DataBoundControlMode.ReadOnly,
                    additionalViewData
                    )
                ));
 }
Пример #7
0
 public static MvcHtmlString Display(
     this HtmlHelper html,
     string expression,
     object additionalViewData
     )
 {
     return(TemplateHelpers.Template(
                html,
                expression,
                null /* templateName */
                ,
                null /* htmlFieldName */
                ,
                DataBoundControlMode.ReadOnly,
                additionalViewData
                ));
 }
Пример #8
0
 public static MvcHtmlString DisplayFor <TModel, TValue>(
     this HtmlHelper <TModel> html,
     Expression <Func <TModel, TValue> > expression,
     object additionalViewData
     )
 {
     return(TemplateHelpers.TemplateFor(
                html,
                expression,
                null /* templateName */
                ,
                null /* htmlFieldName */
                ,
                DataBoundControlMode.ReadOnly,
                additionalViewData
                ));
 }
Пример #9
0
 public static MvcHtmlString Editor(
     this HtmlHelper html,
     string expression,
     string templateName,
     string htmlFieldName,
     object additionalViewData
     )
 {
     return(TemplateHelpers.Template(
                html,
                expression,
                templateName,
                htmlFieldName,
                DataBoundControlMode.Edit,
                additionalViewData
                ));
 }
Пример #10
0
 public static MvcHtmlString EditorFor <TModel, TValue>(
     this HtmlHelper <TModel> html,
     Expression <Func <TModel, TValue> > expression,
     string templateName,
     string htmlFieldName,
     object additionalViewData
     )
 {
     return(TemplateHelpers.TemplateFor(
                html,
                expression,
                templateName,
                htmlFieldName,
                DataBoundControlMode.Edit,
                additionalViewData
                ));
 }
Пример #11
0
 public static MvcHtmlString EditorForModel(
     this HtmlHelper html,
     string templateName,
     string htmlFieldName,
     object additionalViewData
     )
 {
     return(MvcHtmlString.Create(
                TemplateHelpers.TemplateHelper(
                    html,
                    html.ViewData.ModelMetadata,
                    htmlFieldName,
                    templateName,
                    DataBoundControlMode.Edit,
                    additionalViewData
                    )
                ));
 }
Пример #12
0
 public static MvcHtmlString EditorForModel(this HtmlHelper html, string templateName)
 {
     return(MvcHtmlString.Create(TemplateHelpers.TemplateHelper(html, html.ViewData.ModelMetadata, String.Empty, templateName, DataBoundControlMode.Edit, null /* additionalViewData */)));
 }