Virtualization in MultiSelect

Dear Team,

I am using MultiSelect in my Angular 8 application.

I have total of 10000 records and I can't bind all the data at once so I want to bind the data during first time opening of multiselect (15 records) and then add data on filtering,scrolling  (15 more records) based on search string also with the option to "Select All".

Can you please tell how to achieve this through virtualization or any other approach ?





3 Replies 1 reply marked as answer

PM Ponmani Murugaiyan Syncfusion Team October 27, 2020 02:20 PM UTC

Hi Deepak, 

Thanks for contacting Syncfusion support. 

Query1: I want to bind the data during first time opening of multiselect (15 records)                                                                                                                                         
 
At initial opening you can load 15 records using the take in query property as like below code snippet. 
 
    // bind the Query instance to query property 
    public query: Query = new Query().from('Customers').select(['ContactName', 'CustomerID']).take(15); 
 
Query2: Add data on filtering,scrolling  (15 more records) 

We have prepared sample as per your requirement with search and selectAll option. You can achieve your requirement at application end by using virtual scrolling in default scroll event. In the attached sample by using dataManager, we have loaded data in on demand through data manager’s query request. Please find the sample below for your reference. 

[app.component.ts]  
  
public onOpen(args){  
    ... 
    let listElementHTMLElement = (this.multiselectObj as any).list;  
    listElement.addEventListener('scroll', () => {  
      if ((listElement.scrollTop + listElement.offsetHeight >= listElement.scrollHeight)) {  
        let filterQuery = this.multiselectObj.query.clone();  
        this.data.executeQuery(filterQuery.range(startend)).then((eventany=> {  
          start = end;  
          end += 5;  
          this.multiselectObj.addItem(event.result as { [keystring]: Object }[]);  
        }).catch((eObject=> {  
        });  
      }  
    })  
  }  
  


  
Kindly check with the above sample. If you need further assistances, please get back us.  
  
Regards,  
Ponmani M 


Marked as answer

DJ Deepak Jain November 11, 2020 05:42 AM UTC

Hello Ponmani,

In my application I am not using DataManager. I have all the 10000 records available at the component level as an array of objects.
But I want to bind data only on request. For example :

1) At initial rendering = 0 records
2) First time click and open popup = 15 records
3) First keypress typing "a" = 15 + 15(based on search string "a")
4) Second keypress typing "ap" = 30 + 15(based on search string "ap")
5) Third keypress typing "app" =  45 + 15(based on search string "app")

Also the record matching the search string should be on top while typing.


PM Ponmani Murugaiyan Syncfusion Team November 12, 2020 02:45 PM UTC

Hi Deepak, 

Thanks for the update. 

We have prepared sample as per your requirement the data will be loaded with 15 items on every filtering based on character length. 

public query: Query = new Query().select(["Name", "Code"]).take(15); 
 
public onFiltering: EmitType<FilteringEventArgs> = (e: FilteringEventArgs) => { 
    let char = e.text.length + 1; 
    let query: Query = new Query(); 
    query = e.text !== ""? query.where("Name", "contains", e.text, true).take(char * 15) : query; 
    e.updateData(this.data, query); 
}; 



Kindly check with the above sample to meet your requirement. Please get back us if you need further assistance. 

Regards, 
Ponmani M 


Loader.
Up arrow icon