Telerik UI for Blazor 2.7.0 - MultiSelect, New Grid Features, WebAssembly Support and More

栏目: IT技术 · 发布时间: 4年前

内容简介:It's still January but our second release of Telerik UI for Blazor is here! Check out the new MultiSelect component, WASM support, Grid improvements and much more.We are happy to announce the second release ofEarlier this monthwe released the Document Proc

It's still January but our second release of Telerik UI for Blazor is here! Check out the new MultiSelect component, WASM support, Grid improvements and much more.

We are happy to announce the second release of Telerik UI for Blazor for 2020 and introduce you to the large number of January UI for Blazor goodies!

Earlier this monthwe released the Document Processing Library (DPL), Keyboard Navigation, Accessibility, AutoComplete Component, Report Viewer for Blazor (thanks to Telerik Reporting Team) and enhanced Scheduler. In the 2.7.0 release we expanded the UI for Blazor library with a brand new MultiSelect component, multiple enhancements to the Grid such as Column Aggregates, Group Footer and Header Templates, Column Header Template, new Progressive Web application built on top of Blazor WebAssembly and more!

Read ahead and find out all about the new additions in the 2.7.0 release.

Telerik UI for Blazor Supports Both Server and WebAssembly 3.2.0 Preview 1

Our goals is to continue to deliver native, production-ready UI components that support both Blazor hosting models: Server and WebAssembly (WASM). We ensured that the2.7.0 release is compatible and supports the first preview version of Blazor WebAssembly 3.2.0.

To help you get started with Blazor WebAssembly , we created a detailed article describing the steps needed to set up and run your first solution. And for those of you who have existing projects, there are a few steps you need to take to upgrade them to v. 3.2.0 Preview 1 described in the official Microsoft article .

New Blazor MultiSelect Component

Overview

The new Blazor UI MultiSelect Component displays a list of options and allows multiple selections from this list. It provides suggestions as you type, supports customization of the behavior, look and feel through data-biding,events, and setting ofdimensions and templates.

Telerik UI for Blazor 2.7.0 - MultiSelect, New Grid Features, WebAssembly Support and More

Telerik UI for Blazor MultiSelect Component

Data Binding

The MultiSelect component can be bound to a simple collection of string values

< TelerikMultiSelect Data = "@Options" @ bind-Value = "@TheValues" />

Or data model with just a line of code:

< TelerikMultiSelect Data = "@Options" @ bind-Value = "@TheValues" TextField = "StringRepresentation" ValueField = "MyValueField" />

Filtering

For cases with a large number of list values or a need for faster, simplified search of values, you can set theFiltering parameter of the component. This way the MultiSelect component will filter the available suggestions according to the current user input.

To enable filtering, set the Filterable parameter to true.

< TelerikMultiSelect Data = "@Roles" @ bind-Value = "@TheValues" Filterable = "true"

   Placeholder = "Type 'de' to see the filtering" ClearButton = "true />

Additionally, you use the MinLength property to control when the filter list will appear.

< TelerikMultiSelect Data = "@Roles" @ bind-Value = "@TheValues" Filterable = "true" MinLength = "2"

Placeholder = "Type 'de' to see the filtering" ClearButton = "true" />

The filtering default filter operator is “starts with” and ignores casing . You can easily set a different operator through the FilterOperator parameter that takes a member of the Telerik.Blazor.StringFilterOperator enum as shown in the example below:

< TelerikMultiSelect Data = "@Roles" @ bind-Value = "@TheValues" Filterable = "true"

    FilterOperator = "@StringFilterOperator.Contains" />

Templates

You can customize the MultiSelect component and its items rendering using templates. The following options are available:

  • Header Templates - manages the way the pop-up header of a MultiSelect is rendered
  • Footer Templates - manages the way the pop-up footer of a MultiSelect is rendered
  • Item Templates - manages the way the list items of a MultiSelect are rendered

Telerik UI for Blazor 2.7.0 - MultiSelect, New Grid Features, WebAssembly Support and More

Telerik UI for Blazor MultiSelect Templates

Events

You have severalevents available for capturing and handling changes to the values in the MultiSelect component: 

  • OnRead – fires upon component initialization and user filter
  • ValueChanged  - fires upon user selection change
  • OnChange - fires only when the user presses Enter, or blurs the input (for example, clicks outside of the component)

Keyboard Support

Like all other Telerik UI for Blazor components, the MultiSelect supports out of the boxKeyboard Navigation that will allow easy navigation and interaction with the list values of the component.

Blazor Grid New Features

Column Aggregates, Group Header and Footer Templates

“A Grid without grouping is no Grid,” said a wise customer once. Well, we decided to enhance grouping in this release and add column aggregates as well as group header and footer templates that will let you easily display totals of your grid data and highlight values worth attention.

The Telerik UI for Blazor Grid supports several built-in aggregating functions:

  • Average
  • Count
  • Max
  • Min
  • Sum

Enabling aggregates is easy as 1, 2, 3:

  1. Set the Grid's Groupable property to true
  2. Under the <GridAggregates> tag, define the appropriate aggregate function to a filed in the <GridAggregate> tag
  3. Use the aggregated result in the supported templates

You can use aggregates in the following templates:

  • GroupFooterTemplate  of a GridColumn - a footer in the respective column that renders when the grid is grouped.
  • GroupHeaderTemplate  of a GridColumn - a header in the respective column that renders when the grid is grouped by that column. The Value field in the context carries the current group value.

Below is a sample code of how to implement Grid Column Aggregates and Group Templates:

< TelerikGrid Data=@GridData Groupable = "true" Pageable = "true" Height = "650px" >

   < GridAggregates >

     < GridAggregate Field=@nameof(Employee.Team) Aggregate = "@GridAggregateType.Count" />

     < GridAggregate Field=@nameof(Employee.Salary) Aggregate = "@GridAggregateType.Max" />

     < GridAggregate Field=@nameof(Employee.Salary) Aggregate = "@GridAggregateType.Sum" />

   </ GridAggregates >

   < GridColumns >

< GridColumn Field=@nameof(Employee.Name) Groupable = "false" />

     < GridColumn Field=@nameof(Employee.Team) Title = "Team" >

       < GroupFooterTemplate >

         Team Members: < strong >@context.Count</ strong >

       </ GroupFooterTemplate >

       < GroupHeaderTemplate >

         @context.Value @* the default text you would get without the template *@

          < span >Team size: @context.Count</ span >

       </ GroupHeaderTemplate >

     </ GridColumn >

</ GridColumns >

</ TelerikGrid >

Telerik UI for Blazor Column Aggregates and Header Template

Column Header Template

Using the <HeaderTemplate> tag, you can define custom content in the Blazor Grid column headers instead of just the title text. Using the column header templates, you can style headings, visualize images or even add different actions via buttons.

< TelerikGrid Data = "@MyData" Height = "300px" Pageable = "true" Sortable = "true" FilterMode = "@GridFilterMode.FilterMenu" >

   < GridColumns >

     < GridColumn Field = "@(nameof(SampleData.Name))" >

       < HeaderTemplate >

         Employee< br />< strong >Name</ strong >

       </ HeaderTemplate >

     </ GridColumn >

     < GridColumn >

       < HeaderTemplate >

         < span class = "k-display-flex k-align-items-center" >

           < TelerikIcon Icon = "@IconName.Image" />

           Employee Image

         </ span >

       </ HeaderTemplate >

     </ GridColumn >

   </ GridColumns >

</ TelerikGrid >

Telerik UI for Blazor 2.7.0 - MultiSelect, New Grid Features, WebAssembly Support and More New Blazor WebAssembly PWA Sample Application

Progressive Web Applications (PWAs) are on the rise in contemporary web world. Why? Well, PWAs are web apps that uses modern web capabilities to deliver an app-like experience to its users. It can be installed on desktop and mobile, they work offline, and have some nice features like push notifications and so much more.

While dedicated a separate in-depth blog post on building Blazor PWA , we wanted to share with you the new financial demo app built as Blazor WebAssembly PWA .

Telerik UI for Blazor 2.7.0 - MultiSelect, New Grid Features, WebAssembly Support and More Telerik PWA built on top of Blazor WebAssembly

Download Telerik UI for Blazor 2.7.0

Head over to the the Telerik UI for Blazor page and download the 2.7.0 version of Telerik UI for Blazor Native Components. Let us know what next you would like to see in the suite in the comments section below or our dedicated Blazor feedback portal !

On behalf of the Telerik Blazor Team at Progress – thank you for your continuous active engagement and support!


以上所述就是小编给大家介绍的《Telerik UI for Blazor 2.7.0 - MultiSelect, New Grid Features, WebAssembly Support and More》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

互联网+秋叶课堂:我的网课创业

互联网+秋叶课堂:我的网课创业

秋叶 / 北京:机械工业出版社 / 2016-3-1 / 39.0

在线教育被很多人视为 “互联网+”创业热潮中的下一个风口,越来越多的老师和创业者选择在线教育创业。本书作者秋叶老师2013年双11正式带一帮小伙伴开始在线教育创业,在短短两年内“从0到1”,累计做到了超500万元的销售业绩,成为国内Office领域在线教育运营最成功的团队之一。在这本书中秋叶老师结合自己的实战经历,向各位完整剖析了两年创业的真实复盘思考,是一本值得在线教育创业同行入手的必读书。 ......一起来看看 《互联网+秋叶课堂:我的网课创业》 这本书的介绍吧!

HTML 编码/解码
HTML 编码/解码

HTML 编码/解码

正则表达式在线测试
正则表达式在线测试

正则表达式在线测试

RGB HSV 转换
RGB HSV 转换

RGB HSV 互转工具