Requirement In ejs-chiplist

Hi Team,
              I have one issue when I am trying to add recipients the email To field it is adding only if i click enter apart from entering in the keyboard if i click outside it is not adding to the recipient chip so if i click outside also I need to add the recipient in the list. For reference please refer to the attachment.   

Attachment: ChipsClickingIssue_4b7cba02.zip

7 Replies 1 reply marked as answer

SN Sevvandhi Nagulan Syncfusion Team October 16, 2020 02:19 PM UTC

Hi Harish,  


Greetings from Syncfusion support. 

We have considered the reported requirement “Provide support to maintain the typed custom value when control gets out of focus” as a feature in our end. We will include the fix in volume 3 sp1 release, which is expected to be rolled out on first week of November. You can track the status of the fix in the below feedback link. 
  


   

Regards,  
Sevvandhi N 



PH PH Harish November 3, 2020 01:40 PM UTC

Hi Sevvandhi,
                      Any update on this actually I have prod deployment activity on the 9th of this month. So Can you please update me on the date when this feature will be available?


SN Sevvandhi Nagulan Syncfusion Team November 4, 2020 12:54 PM UTC

Hi Harish, 


Sorry for the inconvenience caused.   


Due to the complexity, the fix is not included in this patch release. We will provide high priority and include the fix for the feature in the November 11th  ,2020 patch release.  We appreciate your patience until then.   
  



Regards, 
Sevvandhi N 



PH PH Harish November 11, 2020 09:22 AM UTC

Hi Sevvandhi,
                      Any update on this as promised it was supposed to be released today.


SN Sevvandhi Nagulan Syncfusion Team November 12, 2020 11:24 AM UTC

Hi Harish,  


 
Sorry for the inconvenience caused.    


 
Due to the complexity, the fix is not included in this patch release. We will provide high priority and include the fix for the feature in the November 25th  ,2020 patch release.  We appreciate your patience until then.    
   



Regards,  
Sevvandhi N  



SN Sevvandhi Nagulan Syncfusion Team August 17, 2021 02:57 PM UTC

Hi Harish, 


Thanks for your valuable patience. 


We achieved the requested requirement in the application level. We maintained the typed value and update to the value property in the blur handler in order to create the chip when focus out the control. Please refer the following code. 


    onInput(e){ 
      this.inputValue = e.target.value; 
    } 
    onBlur(e){ 
      this.mulobj.value = this.mulobj.value ? this.mulobj.value : []; 
      this.newValues = (this.mulobj.value as any).concat(this.inputValue); 
      this.mulobj.value = this.newValues; 
      this.inputValue = ''; 
    } 



Please find the sample below. 




Please get back to us if you need further assistance. 


Regards, 
Sevvandhi N 


Marked as answer

BC Berly Christopher Syncfusion Team November 12, 2021 08:00 AM UTC

Hi Harish, 
  
Thanks for the patience. 
  
We are glad to announce that the feature "Provide support to make the typed value as chip/tag after focusing out the component" has been implemented in the weekly patch release 19.3.53. We request you to update the Syncfusion version to latest version to get rid of this issue.  
  
By default, if we are typing any value in the component it will be converted as value when you are pressing enter key. Now, you can convert the typed value as chip or update as value of the component while focusing out the component by enabling the addTagOnBlur property. 
  
// initialize MultiSelect component 
let listObj: MultiSelect = new MultiSelect({ 
  // set the placeholder to MultiSelect input element 
  placeholder: 'Favorite Sports', 
  // set the type of mode for how to visualized the selected items in input element. 
  mode: 'Box', 
  addTagOnBlur: true, 
  allowCustomValue: true, 
}); 
listObj.appendTo('#box'); 
 
  
Please find the sample from the below link 
  
Please find the release notes details below. 
   
Please let us know if you need any further assistance on this.  
  
 
Regards, 
Berly B.C 


Loader.
Up arrow icon