Mobiscroll 2.0.0-rc3

This is a prerelease version of Mobiscroll.
There is a newer version of this package available.
See the version list below for details.
dotnet add package Mobiscroll --version 2.0.0-rc3
                    
NuGet\Install-Package Mobiscroll -Version 2.0.0-rc3
                    
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="Mobiscroll" Version="2.0.0-rc3" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Mobiscroll" Version="2.0.0-rc3" />
                    
Directory.Packages.props
<PackageReference Include="Mobiscroll" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Mobiscroll --version 2.0.0-rc3
                    
#r "nuget: Mobiscroll, 2.0.0-rc3"
                    
#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.
#:package Mobiscroll@2.0.0-rc3
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Mobiscroll&version=2.0.0-rc3&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Mobiscroll&version=2.0.0-rc3&prerelease
                    
Install as a Cake Tool

My package description.

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2.13.2 541 10/22/2014
2.13.0 128 9/19/2014
2.12.0 131 7/22/2014
2.12.0-beta 59 7/8/2014
2.11.1 74 6/5/2014
2.11.0 70 5/15/2014
2.10.1 56 4/22/2014
2.9.5 73 3/12/2014
2.9.4 59 2/26/2014
2.9.3 59 2/10/2014
2.9.2 51 1/21/2014
2.9.1 51 1/10/2014
2.8.3 82 11/15/2013
2.8.2 59 11/4/2013
2.8.1 53 10/28/2013
2.8.0 58 10/10/2013
2.7.2 58 9/11/2013
2.6.2 425 7/4/2013
2.6.1 52 7/2/2013
2.6.0 67 6/19/2013
2.5.4 160 5/13/2013
2.5.3 61 5/3/2013
2.5.2 62 4/19/2013
2.5.1 48 4/17/2013
2.5.0 48 3/28/2013
2.4.5 49 3/14/2013
2.4.4 49 2/22/2013
2.4.3 51 2/15/2013
2.4.2 50 2/13/2013
2.4.1 48 2/6/2013
2.4.0 53 1/28/2013
2.3.1 51 12/18/2012
2.3.0 49 12/10/2012
2.2.0 60 11/22/2012
2.1.0 54 10/29/2012
2.1.0-beta 47 10/8/2012
2.0.3.1 50 9/18/2012
2.0.2 50 8/27/2012
2.0.1 54 7/26/2012
2.0.0 50 5/25/2012
2.0.0-rc3 46 5/16/2012
2.0.0-rc2 46 5/8/2012
1.0.2 52 8/24/2011

Bugfixes:

Fixed: In clickpick mode minus button had plus button behavior

Fixed: In inline mode getValue always returned the initial values

Fixed: min/max attributes were incorrectly parsed when using HTML5 time input

Enhancements

Added: invalid option for the datetime preset to set dates unselectable. There are three properties to specify dates, all can be used separate or combined. dates is be an array of dates to disable exact dates on the scroller. daysOfWeek is an array with values from 0 to 6, daysOfMonth is an array which accepts numbers (e.g. every month's 2nd day) or a string in 'x/y' format (e.g. 12/24 means every year's 24th December is disabled). A sample configuration: invalid: { dates: [new Date(2012,5,4), new Date(2012,5,13)], daysOfWeek: [0, 6], daysOfMonth: ['5/1', '12/24', '12/25'] }

Added: The select preset automatically disables elements on the scroller if they were disabled in the original html select element