Having trouble getting help?
Contact Support
Contact Support
Right to left in React Check box component
7 Aug 20231 minute to read
CheckBox component has RTL support. This can be achieved by setting enableRtl
as true
.
The following example illustrates how to enable right-to-left support in CheckBox component.
import { enableRipple } from '@syncfusion/ej2-base';
import { CheckBoxComponent } from '@syncfusion/ej2-react-buttons';
import * as React from 'react';
import * as ReactDom from 'react-dom';
enableRipple(true);
// To customize CheckBox appearance.
function App() {
return (<ul>
<li><CheckBoxComponent label="Default" enableRtl={true}/></li>
</ul>);
}
export default App;
ReactDom.render(<App />, document.getElementById('check-box'));
import { enableRipple } from '@syncfusion/ej2-base';
import { CheckBoxComponent } from '@syncfusion/ej2-react-buttons';
import * as React from 'react';
import * as ReactDom from 'react-dom';
enableRipple(true);
// To customize CheckBox appearance.
function App() {
return (
<ul>
<li><CheckBoxComponent label="Default" enableRtl={true} /></li>
</ul>
);
}
export default App;
ReactDom.render(<App />, document.getElementById('check-box'));