WebExtras.Mvc 2.0.0.66

There is a newer version of this package available.
See the version list below for details.
dotnet add package WebExtras.Mvc --version 2.0.0.66
NuGet\Install-Package WebExtras.Mvc -Version 2.0.0.66
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="WebExtras.Mvc" Version="2.0.0.66" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add WebExtras.Mvc --version 2.0.0.66
#r "nuget: WebExtras.Mvc, 2.0.0.66"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install WebExtras.Mvc as a Cake Addin
#addin nuget:?package=WebExtras.Mvc&version=2.0.0.66

// Install WebExtras.Mvc as a Cake Tool
#tool nuget:?package=WebExtras.Mvc&version=2.0.0.66

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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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 884 11/3/2017
2.1.0.17 1,410 12/22/2016
2.0.0.72 1,661 11/3/2016
2.0.0.70 1,071 10/28/2016
2.0.0.66 1,102 10/28/2016
1.5.0 1,185 5/3/2016
1.4.0-Beta-1 1,042 5/21/2014
1.3.2 1,641 4/29/2014
1.3.1 1,362 4/14/2014
1.3.0.1 1,140 12/24/2013
1.3.0 1,124 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