Beispiel #1
0
 public static JQueryForm JQueryBeginForm(this AjaxHelper ajaxHelper, string actionName, JQueryOptions jQueryOptions)
 {
     return(ajaxHelper.JQueryBeginForm(actionName, (object)null, jQueryOptions));
 }
Beispiel #2
0
 public static JQueryForm JQueryBeginForm(this AjaxHelper ajaxHelper, string actionName, string controllerName, object routeValues, JQueryOptions jQueryOptions, object htmlAttributes)
 {
     System.Web.Routing.RouteValueDictionary dictionary = new System.Web.Routing.RouteValueDictionary(routeValues);
     System.Collections.Generic.Dictionary <string, object> dictionary2 = JQueryExtension.ObjectToCaseSensitiveDictionary(htmlAttributes);
     return(ajaxHelper.JQueryBeginForm(actionName, controllerName, dictionary, jQueryOptions, dictionary2));
 }
Beispiel #3
0
 public static JQueryForm JQueryBeginForm(this AjaxHelper ajaxHelper, string actionName, System.Web.Routing.RouteValueDictionary routeValues, JQueryOptions jQueryOptions, System.Collections.Generic.IDictionary <string, object> htmlAttributes)
 {
     return(ajaxHelper.JQueryBeginForm(actionName, null, routeValues, jQueryOptions, htmlAttributes));
 }
Beispiel #4
0
 public static JQueryForm JQueryBeginForm(this AjaxHelper ajaxHelper, string actionName, string controllerName, System.Web.Routing.RouteValueDictionary routeValues, JQueryOptions jQueryOptions)
 {
     return(ajaxHelper.JQueryBeginForm(actionName, controllerName, routeValues, jQueryOptions, null));
 }
Beispiel #5
0
 public static JQueryForm JQueryBeginForm(this AjaxHelper ajaxHelper, string actionName, string controllerName, object routeValues, JQueryOptions jQueryOptions)
 {
     return(ajaxHelper.JQueryBeginForm(actionName, controllerName, routeValues, jQueryOptions, null));
 }
Beispiel #6
0
 public static JQueryForm JQueryBeginForm(this AjaxHelper ajaxHelper, string actionName, object routeValues, JQueryOptions jQueryOptions, object htmlAttributes)
 {
     return(ajaxHelper.JQueryBeginForm(actionName, null, routeValues, jQueryOptions, htmlAttributes));
 }