Declined
Last Updated: 09 Jun 2020 13:46 by ADMIN
Bill
Created on: 07 Aug 2017 17:14
Category: AutoComplete
Type: Feature Request
2
Let valueField and textField properties accept callback functions to interact with complex objects.
The Dropdowns, autocompletes and pretty much every component in the Kendo Angular 2 should allow the developer to specify a callback function in the [valueField] or the [textField] attributes so we can use complex objects with these components.  

This way, we could do this:
//template

<kendo-autocomplete [data]="nodes"

                        [valueField]="getDataValue"

                        [placeholder]="'search'"

                        class="search">

</kendo-autocomplete>

//class

public getDataValue(node: any): string {

  return node.getData().getName();

}

This functionality is available on almost every other component set out there, but is somehow missing from Kendo.  It makes the components almost useless outside of running simple plunkr examples that work with contrived data objects with very little depth.  In the real world, particularly with typescript, data object hierarchies are commonplace and this is simply a must have feature.
1 comment
ADMIN
Martin
Posted on: 09 Jun 2020 13:46

Hi Bill,

Thank you for the feedback.

The DropDowns are not designed to work with new data array instances on each change detection cycle. With larger data sets, this would lead to poor performance, especially on slower browsers and computers. Therefore, this is not supported.

If you need to change the data set on certain user interactions, hook to one of the component events and substitute the data only on such occasions.

Regards,
Martin
Progress Telerik

Progress is here for your business, like always. Read more about the measures we are taking to ensure business continuity and help fight the COVID-19 pandemic.
Our thoughts here at Progress are with those affected by the outbreak.