Localization Select All/Unselect All

Hi,

I am using the multi select component with localization with:

 'fr-FR': {

        'multi-select': {

            'noRecordsTemplate': 'Aucun élément'

        }

    }

I don't find documentation about Select All and Unselect localization. I have tried to add selectAll, SelectAll without success.


Do you have any clue?


regards,

Laurent


1 Reply

BC Berly Christopher Syncfusion Team November 25, 2021 07:34 AM UTC

Hi Laurent, 
  
Greetings from Syncfusion support. 
  
We can achieve the requested requirement with help of “selectAllText” and “unSelectAllText” localized content as mentioned below. 
  
<script> 
    ej.base.L10n.load({ 
        'fr-BE': { 
           "multi-select": { 
            "noRecordsTemplate": "Aucun enregistrement trouvé", 
            "actionFailureTemplate": "La demande a échoué", 
            "overflowCountTemplate": "+${count} de plus ..", 
            "selectAllText": "Tout sélectionner", 
            "unSelectAllText": "Tout déselectionner", 
            "totalCountTemplate": "${count} sélectionné" 
          } 
        } 
    }); 
</script> 
 
  
  
  
Screenshot: 
  
 
  
Regards, 
Berly B.C 


Loader.
Up arrow icon