WebExtras.Mvc
2.0.0.70
See the version list below for details.
dotnet add package WebExtras.Mvc --version 2.0.0.70
NuGet\Install-Package WebExtras.Mvc -Version 2.0.0.70
<PackageReference Include="WebExtras.Mvc" Version="2.0.0.70" />
paket add WebExtras.Mvc --version 2.0.0.70
#r "nuget: WebExtras.Mvc, 2.0.0.70"
// Install WebExtras.Mvc as a Cake Addin #addin nuget:?package=WebExtras.Mvc&version=2.0.0.70 // Install WebExtras.Mvc as a Cake Tool #tool nuget:?package=WebExtras.Mvc&version=2.0.0.70
Provides a set of MVC helper and extension methods for the popular Bootstrap, Gumby and jQuery UI CSS frameworks. Includes other MVC helpers which can be used in core MVC development as well.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net45 is compatible. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
-
.NETFramework 4.5
- Microsoft.AspNet.Mvc (>= 4.0.20505)
- Newtonsoft.Json (>= 8.0.3)
- T4MVCExtensions (>= 3.17.5)
- WebExtras (>= 2.0.0.66)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on WebExtras.Mvc:
Package | Downloads |
---|---|
WebExtras.Mvc.T4
Provides a set of MVC helper and extension methods (that depend on the T4MVC templating engine) for the popular Bootstrap, Gumby and jQuery UI CSS frameworks. Includes other MVC helpers which can be used in core MVC development as well. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
3.0.0-pre20171103 | 921 | 11/3/2017 |
2.1.0.17 | 1,457 | 12/22/2016 |
2.0.0.72 | 1,699 | 11/3/2016 |
2.0.0.70 | 1,103 | 10/28/2016 |
2.0.0.66 | 1,128 | 10/28/2016 |
1.5.0 | 1,219 | 5/3/2016 |
1.4.0-Beta-1 | 1,071 | 5/21/2014 |
1.3.2 | 1,675 | 4/29/2014 |
1.3.1 | 1,395 | 4/14/2014 |
1.3.0.1 | 1,177 | 12/24/2013 |
1.3.0 | 1,156 | 12/24/2013 |
The project is now licensed under Apache License v2.0
A major namespace shuffle has taken place for the entire library. While all the old functionality is still available, you will have to update your USING statements accordingly. Both WebExtras.Mvc and WebExtras.Nancy libraries now depend on WebExtras library and as such you must add this library to your project
Recommended: Creation of HTML components should now be done using the HtmlComponent instead of HtmlElement class. HtmlComponent can then be converted to a HtmlElement using the ToHtmlElement() extension method in the WebExtras.Mvc.Html namespace. HtmlElement class is now marked as obsolete and will be removed in the next major release.
- Enh: IBootstrapFormComponent now gives access to the wrapper <DIV> element
- Enh: Added ability to retrieve only specific type of alerts from GetUserAlerts extension method
- Enh: BootstrapConstants => BootstrapSettings
- Enh: JsonNetResult now uses the global JSON serialiser settings set via WebExtrasSettings.SerialiseSettings
- Enh: WebExtrasConstants => WebExtrasSettings, WebExtrasMvcConstants has been merged into WebExtrasSettings
- Enh: Errors on model state can now be ignored using the IgnoreErrors<> extension method
- Enh: Adding EButton.Back as a synonym of EButton.Cancel
- Enh: Adding IHtmlRenderer.PreRender to be able to hook into the rendering pipeline just before the compose phase starts
- Enh: A form component can now have it's value set via IFormComponent.SetValue(...)
- Enh: jQuery dataTables bindings now support adding of plugin options via DatatableSettings.Plugins property. Buttons and ColVis plugins are supported out-of-the-box
- Fix: Fixing a bug in the dropdown creator extension where the selected option was not honoured when the SelectListItem.Selected property was set to true