redui 1.0.0-beta001

This is a prerelease version of redui.
dotnet add package redui --version 1.0.0-beta001
                    
NuGet\Install-Package redui -Version 1.0.0-beta001
                    
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="redui" Version="1.0.0-beta001" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="redui" Version="1.0.0-beta001" />
                    
Directory.Packages.props
<PackageReference Include="redui" />
                    
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 redui --version 1.0.0-beta001
                    
#r "nuget: redui, 1.0.0-beta001"
                    
#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.
#addin nuget:?package=redui&version=1.0.0-beta001&prerelease
                    
Install redui as a Cake Addin
#tool nuget:?package=redui&version=1.0.0-beta001&prerelease
                    
Install redui as a Cake Tool

Javascript UI Framework for Single Page Applications.

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on redui:

Package Downloads
redui.sample

Typescript UI framework Sample Application.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.0-beta001 1,344 4/28/2014
1.0.0-alpha0026 1,269 4/14/2014
1.0.0-alpha0024 1,131 3/17/2014
1.0.0-alpha0023 1,121 2/23/2014
1.0.0-alpha0022 1,122 2/17/2014
1.0.0-alpha0021 1,006 1/29/2014
1.0.0-alpha0020 999 1/17/2014
1.0.0-alpha0019 970 12/5/2013
1.0.0-alpha0018 1,110 11/25/2013
1.0.0-alpha0017 1,075 11/18/2013
1.0.0-alpha0016 1,019 11/14/2013
1.0.0-alpha0015 1,024 11/12/2013
1.0.0-alpha0014 1,037 11/7/2013
1.0.0-alpha0013 1,049 11/4/2013
1.0.0-alpha0012 1,005 10/30/2013
1.0.0-alpha0011 1,017 10/7/2013
1.0.0-alpha0010 1,038 10/2/2013
1.0.0-alpha0009 1,051 10/2/2013
1.0.0-alpha0008 1,021 10/2/2013
1.0.0-alpha0007 1,013 9/17/2013
1.0.0-alpha0006 1,028 9/16/2013
1.0.0-alpha0005 1,010 9/6/2013
1.0.0-alpha0004 1,078 9/4/2013
1.0.0-alpha0002 1,022 8/29/2013
1.0.0-alpha0001 1,062 3/20/2013

* Window model gets a property 'trackChanges'. When set to true, window model is stored in the local storage when window is closed. Any changes in the model are restored when the window is created from the same model
* Window model gets a property 'version' that solves the potential issue with the stored model being incompatible with the new model. Model is only restored when version mathes
* Window for which 'trackChanges' is set to 'true' keeps the size when re-opened
* Functions createNewWindow and createNewWindowFromModel accept IWindowContext as a optional parameter that is stored in the window.context property, which solves dependency on "global" variables (defined on redui object)
* When ComboBox/ListBuilder is initialized, getOptionsFunction model property is used to look up the function on the window context first, and only if not found, on the global context (redui.optionsBag)
* When ObjectSelector select button is pressed, getObjectFunction model property is used to look up the function on the window context first, and only if not found, on the global context (redui.objectSources)
* IGridViewColumnModel allows to specify the order (when not set, defaults to column model index in the model)
* GridView allows to show/hide columns (Accessible through the context menu added by default for every column)
* GridView allows changing column order (Accessible through the context menu added by default for every column)
* GridView column order/visibility/width is saved in the localStorage (if is declared in the window with 'trackChanges' set to 'true')

See complete list of currently implemented controls and features at https://redui.codeplex.com/wikipage?title=Release%20Notes