DevExtreme Angular - What’s New 17.2 (2024)

New Color Schemes

New Color Schemes for the Generic Theme

You can now change your entire application’s color palette byapplying one ofour newly implemented schemes: Soft Blue, Carmine, Green Mist, Dark Violet, and Dark Moon. These new color schemes are based onthe DevExtreme Generic theme.

Blog Post

DevExtreme Angular - What’s New 17.2 (1)

React Grid (Beta)

Enhancements

DevExtreme React Grid v17.2 ships with the following new features:

Blog Post

DevExtreme Angular - What’s New 17.2 (2)

Data Grid

Blog Post

Column Header Filter and Column Chooser Search

You can now search through header filter values. You can activate this feature for all columns oronly aspecific column using the widget’s orcolumn’s ’headerFilter.allowSearch’ option.

Demo

DevExtreme Angular - What’s New 17.2 (3)

DateTime Data Type Support

Our HTML5 Data Grid fully supports time portions in Date-Time values:

  • Proper time formatting is applied to cell display text.
  • Cell drop-downs include time editing controls.
  • The grid allows you to filter data while taking time values into account.

DevExtreme Angular - What’s New 17.2 (4)

Custom Sorting

You can implement your own value comparison function and thus enable custom data sorting algorithms.

Data Visualization

Funnel / Pyramid Chart

Our new Funnel widget allows you tocreate funnel and pyramid charts for use within your HTML5-JavaScript applications

Demo Blog Post

DevExtreme Angular - What’s New 17.2 (5)

DevExtreme Angular - What’s New 17.2 (6)

Chart Axis - Scale Breaks

DevExtreme HTML5-JavaScript Chart can automatically analyze your chart’s data and apply scale breaks toimprove readability. Manual scale breaks are also supported.

DevExtreme Angular - What’s New 17.2 (7)

Chart Axis - Tick Mark Generation

DevExpress HTML5 Chart v17.2 ships with improved tick mark generation logic:

  • Date-time ticks are always displayed at the start of standard date-time intervals: first day of week / month / year, start of a day, top of an hour, etc.
  • You can force a numeric axis to generate ticks only at whole number positions.
  • Numeric and date-time axis can now automatically adjust label formatting, improving readability with a compact display option.

DevExtreme Angular - What’s New 17.2 (8)

Date-Time Axis - Exclude Weekends and Holidays

You can now suppress weekends and holidays onthe chart’s arguments scale and provide anuninterrupted display for adataset that only includes work days.

DevExtreme Angular - What’s New 17.2 (9)

Pivot Grid

Blog Post

Column Header Filter and Field Chooser Search Panel

With this release, our HTML5-JavaScript Pivot Grid can display asearch box within its Field Chooser dialog and Filter Dropdown.

Demo

DevExtreme Angular - What’s New 17.2 (10)

Scheduler

Blog Post

Display Multiple Days, Weeks, or Months in a View

Our HTML5-JavaScript Scheduler allows you tospecify the number ofDays, Weeks orMonths todisplay within the Day View, Week View and Month View respectively.

Demo

DevExtreme Angular - What’s New 17.2 (11)

Compressed Appointment Display Option

You can limit the number of simultaneously displayed appointments in:

  • a single cell in the Month View;
  • a single all-day panel in the Day View or Week View.

Ifthe number ofappointments exceeds the specified value, our Scheduler collapses them into asingle label (once selected, this label displays all events within adrop-down list).

You can customize drop-down list appearance using the ’dropDownAppointmentTemplate’ option.

Demo

DevExtreme Angular - What’s New 17.2 (12)

Current Date-Time Indicator

Our HTML5-JavaScript Scheduler can indicate the current time inviews that utilize atime scale. Inaddition, you can enable timetable shading uptothe current time mark.

Tree List

Blog Post

Recursive Node Selection

Our HTML5-JavaScript Tree List now supports recursive node selection:

  • When changing a parent node's selected state, all child nodes at all nesting levels are updated accordingly.
  • Parent nodes can automatically change their state to selected, unselected or indeterminate, based upon the number of selected child nodes.

Demo

DevExtreme Angular - What’s New 17.2 (13)

Column Header Filter and Column Chooser Search

You can now search through header filter values. You can activate this feature for all columns oronly aspecific column using the widget’s orcolumn’s ’headerFilter.allowSearch’ option.

New Filter Builder Widget

Our new HTML5-JavaScript FilterBuilder widget allows users toconstruct complex filter expressions with absolute ease (supports anunlimited number offilter conditions). Itcan beused onastandalone basis orwith the List, Data Grid, and TreeList widgets.

Demo Blog Post

DevExtreme Angular - What’s New 17.2 (14)

TagBox - New Item Selection Options

The TagBox can now group multiple tags into asingle label when all available tags are selected orwhen end-users select apredefined set. Users can access individual tags byclicking the joined label (invokes the dropdown selection list).

Demo Blog Post

DevExtreme Angular - What’s New 17.2 (15)

DateBox and Calendar - Disable Desired Dates

Our HTML5-JavaScript DateBox and Calendar widgets include anew ’disabledDates’ option. Asthe name suggests, this new feature allows you todisable access tocertain dates within the calendar - byeither supplying apredefined date array, orimplementing afunction that determines whether adate should beavailable toend-users.

Demo Blog Post

DevExtreme Angular - What’s New 17.2 (16)

TreeView and List - Search Panel

Tosimplify record selection, our HTML5-JavaScript List and TreeView widgets allows you todisplay asearch box within its container.

Demo Blog Post

NumberBox - Display Text Formatting and Input Masking

The NumberBox widget now supports flexible display text formatting using Locale Data Markup Language (LDML) patterns. The specified format can also beused asamask tocontrol end-user input.

DevExtreme Angular - What’s New 17.2 (17)

Improved Angular Support

This release includes the following Angular integration improvements:

  • Optional jQuery Dependencies: Disable jQuery dependencies and Increase Angular component performance byupto30%.

    Blog Post

  • Improved TypeScript Declarations: All Angular component properties are now declared with aspecific type instead ofany. This helps avoid type conversion errors.

    Blog Post

Localization Enhancements

LDML Pattern Support

With this release, you can use Locale Data Markup Language (LDML) patterns tolocalize dates and numbers regardless ofthe localization library used.

Custom decimal and thousands separators

Our built-in localization engine now offers ’thousandsSeparator’ and ’decimalSeparator’ global configuration options.

Built-in parser for Intl

You nolonger need toimplement acustom Date-Time parser when localizing widgets with Intl.

TypeScript Declarations

Improvements

DevExtreme can now utilize the benefits ofTypeScript 2.0or higher and use specific types instead ofany wherever possible.

Blog Post

MVC Controls

Easily Add DevExtreme MVC Controls to ASP.NET Core Projects

Wehave extended Visual Studio support with anew menu item that allows you toeasily incorporate DevExtreme ASP.NET MVC Controls toanexisting ASP.NET Core project.

Blog Post Documentation

DevExtreme Angular - What’s New 17.2 (18)

.NET Core 2.0 Support

DevExtreme ASP.NET MVC Controls can now beused inRazor Page projects (introduced with .NET Core2.0). Inaddition, our project templates and demos have been updated to .NET Core2.0.

Blog Post Webinar

New Strongly-Typed HTML Helpers

You can now use lambdas when configuring Data Grid columns and summaries, PivotGrid fields, and Form items. This ensures compile-time type safety, enables IntelliSense, and automatically adds client-side validation based onData Annotations defined inthe model.

View:
@(Html.DevExtreme().DataGrid<Sale> ()
.Columns(columns => {
columns.AddFor(m => m.CategoryID);
...

Model:
public class Order {
[Required(ErrorMessage = "CategoryID field is required")]
[Display(Name = "Category ID")]
public int CategoryID { get; set; }
...

Blog Post Documentation

New NamedTemplate Helper for Creating Complex Views

This release introduces anew ’NamedTemplate()’ helper - allowing you toembed controls into one another. Byleveraging its capabilities, you can reduce the amount ofcode needed togenerate complex views.

Demo

DevExtreme Angular - What’s New 17.2 (19)

Data Layer - Cross-domain Controller Support

The ’newRemoteController()’ method allows you toconsume API controllers hosted onexternal domains and identified byURLs.

@(Html.DevExtreme().DataGrid()
.DataSource(ds => ds.RemoteController()
.Key("OrderID")
.LoadUrl("http://www.example.com/Orders/GetOrders")
.InsertUrl("http://www.example.com/Orders/InsertOrder")
.UpdateUrl("http://www.example.com/Orders/UpdateOrder")
.DeleteUrl("http://www.example.com/Orders/DeleteOrder")
)
)

Blog Post Documentation

Data Layer - Areas Support

You can now access API controllers indifferent areas using the ’Area()’ method added tothe ’Mvc()’ data source.

.DataSource(d => d.Mvc()
.Area("Area")
.Controller("Controller")
.LoadAction("Action")
)

Blog Post Documentation

Learn More Details

Tolearn detailed information onnew features and resolved issues, refer tothe What’s New in17.2 list.

DevExtreme Angular - What’s New 17.2 (2024)
Top Articles
Latest Posts
Article information

Author: Dean Jakubowski Ret

Last Updated:

Views: 5732

Rating: 5 / 5 (70 voted)

Reviews: 85% of readers found this page helpful

Author information

Name: Dean Jakubowski Ret

Birthday: 1996-05-10

Address: Apt. 425 4346 Santiago Islands, Shariside, AK 38830-1874

Phone: +96313309894162

Job: Legacy Sales Designer

Hobby: Baseball, Wood carving, Candle making, Jigsaw puzzles, Lacemaking, Parkour, Drawing

Introduction: My name is Dean Jakubowski Ret, I am a enthusiastic, friendly, homely, handsome, zealous, brainy, elegant person who loves writing and wants to share my knowledge and understanding with you.