Contents
- Loading translations
- See Also
Having trouble getting help?
Contact Support
Contact Support
Localization in React Drop down list component
10 Jan 202410 minutes to read
The Localization library allows you to localize static text content of the noRecordsTemplate and actionFailureTemplate properties according to the culture currently assigned to the DropDownList.
Locale key | en-US (default) |
---|---|
noRecordsTemplate | No records found |
actionFailureTemplate | The request failed |
Loading translations
To load translation object to your application, use load function of the L10n class.
In the following sample, French culture is set to the DropDownList and no data is loaded. Hence, the noRecordsTemplate
property displays its text in French culture initially, and if the sample is run offline, the actionFailureTemplate
property displays its text appropriately.
[Class-component]
// import L10n class for load function
import { L10n } from '@syncfusion/ej2-base';
// import DataManager related classes
import { DataManager, ODataV4Adaptor, Query } from '@syncfusion/ej2-data';
import { DropDownListComponent } from '@syncfusion/ej2-react-dropdowns';
import * as React from 'react';
import * as ReactDOM from 'react-dom';
export default class App extends React.Component {
// bind remotedata to showcase actionFailureTemplate in offline.
customerData = new DataManager({
adaptor: new ODataV4Adaptor,
crossDomain: true,
url: 'https://services.odata.org/V4/Northwind/Northwind.svc/Customers'
});
// maps the appropriate column to fields property
fields = { text: 'ContactName', value: 'CustomerID' };
// take 0 item to showcase noRecordsTemplate property.
query = new Query().select(['ContactName', 'CustomerID']).take(0);
// set locale culture to DropDownList
componentWillMount() {
L10n.load({
'fr-BE': {
'dropdowns': {
'actionFailureTemplate': "Modèle d'échec d'action",
'noRecordsTemplate': "Aucun enregistrement trouvé"
}
}
});
}
render() {
return (
// specifies the tag for render the DropDownList component
<DropDownListComponent id="ddlelement" fields={this.fields} locale="fr-BE" query={this.query} dataSource={this.customerData} placeholder="Sélectionnez un client"/>);
}
}
ReactDOM.render(<App />, document.getElementById('sample'));
// import L10n class for load function
import { L10n } from '@syncfusion/ej2-base';
// import DataManager related classes
import { DataManager, ODataV4Adaptor, Query } from '@syncfusion/ej2-data';
import { DropDownListComponent } from '@syncfusion/ej2-react-dropdowns';
import * as React from 'react';
import * as ReactDOM from 'react-dom';
export default class App extends React.Component<{}, {}> {
// bind remotedata to showcase actionFailureTemplate in offline.
private customerData: DataManager = new DataManager({
adaptor: new ODataV4Adaptor,
crossDomain: true,
url: 'https://services.odata.org/V4/Northwind/Northwind.svc/Customers'
});
// maps the appropriate column to fields property
private fields: object = { text: 'ContactName', value: 'CustomerID' };
// take 0 item to showcase noRecordsTemplate property.
private query: Query = new Query().select(['ContactName', 'CustomerID']).take(0);
// set locale culture to DropDownList
public componentWillMount() {
L10n.load({
'fr-BE': {
'dropdowns': {
'actionFailureTemplate': "Modèle d'échec d'action",
'noRecordsTemplate': "Aucun enregistrement trouvé"
}
}
});
}
public render() {
return (
// specifies the tag for render the DropDownList component
<DropDownListComponent id="ddlelement" fields={this.fields} locale="fr-BE" query={this.query} dataSource={this.customerData} placeholder="Sélectionnez un client" />
);
}
}
ReactDOM.render(<App />, document.getElementById('sample'));
[Functional-component]
// import L10n class for load function
import { L10n } from '@syncfusion/ej2-base';
// import DataManager related classes
import { DataManager, ODataV4Adaptor, Query } from '@syncfusion/ej2-data';
import { DropDownListComponent } from '@syncfusion/ej2-react-dropdowns';
import * as React from 'react';
import * as ReactDOM from 'react-dom';
function App() {
const customerData = new DataManager({
adaptor: new ODataV4Adaptor,
crossDomain: true,
url: 'https://services.odata.org/V4/Northwind/Northwind.svc/Customers'
});
const fields= { text: 'ContactName', value: 'CustomerID' };
const query= new Query().select(['ContactName', 'CustomerID']).take(0);
// set locale culture to DropDownList
React.useEffect(() => {
L10n.load({
'fr-BE': {
'dropdowns': {
'actionFailureTemplate': "Modèle d'échec d'action",
'noRecordsTemplate': "Aucun enregistrement trouvé"
}
}
});
}, []);
return (
// specifies the tag for render the DropDownList component
<DropDownListComponent id="ddlelement" fields={fields} locale="fr-BE" query={query} dataSource={customerData} placeholder="Sélectionnez un client"/>);
}
ReactDOM.render(<App />, document.getElementById('sample'));
// import L10n class for load function
import { L10n } from '@syncfusion/ej2-base';
// import DataManager related classes
import { DataManager, ODataV4Adaptor, Query } from '@syncfusion/ej2-data';
import { DropDownListComponent } from '@syncfusion/ej2-react-dropdowns';
import * as React from 'react';
import * as ReactDOM from 'react-dom';
function App() {
// bind remotedata to showcase actionFailureTemplate in offline.
const customerData: DataManager = new DataManager({
adaptor: new ODataV4Adaptor,
crossDomain: true,
url: 'https://services.odata.org/V4/Northwind/Northwind.svc/Customers'
});
// maps the appropriate column to fields property
const fields: object = { text: 'ContactName', value: 'CustomerID' };
// take 0 item to showcase noRecordsTemplate property.
const query: Query = new Query().select(['ContactName', 'CustomerID']).take(0);
// set locale culture to DropDownList
React.useEffect(() => {
L10n.load({
'fr-BE': {
'dropdowns': {
'actionFailureTemplate': "Modèle d'échec d'action",
'noRecordsTemplate': "Aucun enregistrement trouvé"
}
}
});
}, []);
return (
// specifies the tag for render the DropDownList component
<DropDownListComponent id="ddlelement" fields={fields} locale="fr-BE" query={query} dataSource={customerData} placeholder="Sélectionnez un client" />
);
}
ReactDOM.render(<App />, document.getElementById('sample'));