Unplanned
Last Updated: 13 Feb 2025 11:25 by ADMIN
Ram
Created on: 29 Mar 2021 18:08
Category: KendoReact
Type: Feature Request
3
MultiColumnComboBox sort
Sorting for the MultiColumnComboBox columns - We need the ability to sort list data and allow user to select column to sort.
5 comments
ADMIN
Filip
Posted on: 13 Feb 2025 11:25

Hello, Revanth,

I understand how urgent it is for your app to have sorting working out of the box. The requested feature is currently not very popular within the community, we will be monitoring it closely and start planning it's implementation once it becomes popular enough.

As for the icons not being properly rendered by the component I can suggest submitting a support ticket with a reproducible example so that we can further examine it.

Regards,
Filip
Progress Telerik

Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.

Revanth
Posted on: 07 Feb 2025 09:49

Team,

The problem here is , Even my custom logic is not working. In the below example when i gave icons for ascending and descending were not visible on hear section along with column headers.

Need your support for this work around.

 

Regards,

Revanth

Revanth
Posted on: 07 Feb 2025 09:45

Problem is custom logic also not working. In the below code, header is not taking the icons as well.

 

Need support here.

Revanth
Posted on: 07 Feb 2025 09:41

Hi Team,

It is a must have feature, when we are especially dealing with big data. Please do provide the same.

Please provide any temporary work around on top this control.

header: this.renderHeader(),
renderHeader = () => {
    const { sort } = this.state;
    return (
      <div className="header-container" style={{ display: 'flex', alignItems: 'center' }}>
        {this.columns.map((column) => (
          <div
            key={column.field}
            style={{ width: column.width, display: 'inline-block', cursor: 'pointer', padding: '5px' }}
            onClick={() => this.handleSortChange(column.field)}
          >
            {column.header}
            {sort[0].field === column.field && (
              <span>
                {sort[0].dir === 'asc' ? ' 🔼' : ' 🔽'}
              </span>
            )}
          </div>
        ))}
 

 

Regards,

Revanth

ADMIN
Krissy
Posted on: 30 Mar 2021 13:36

Hi Ram,

Thank you for submitting this request.
This response is to confirm that our team has acknowledged your request and will plan it based on the community's interest.

Once the feature is planned, the status will be updated and you will be notified of this.

Regards,
Krissy
Progress Telerik

Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.