Wednesday, July 3, 2024
HomeLanguagesReactReact Suite Cascader ts:Placement Props

React Suite Cascader ts:Placement Props

React Suite is a popular front-end library with a set of React components that are designed for the middle platform and back-end products. Cascader component is used as a cascade selection box. It helps the user in a Single selection of data with a hierarchical relationship structure. The placement prop of the React Suite Cascader component defines the position of the Cascader. 

Cascader ts: Placement Props =  ‘bottomStart’ | ‘topStart’ | ‘autoVerticalStart’ ;

Syntax:

<Cascader placement=""  />

Approach: Let us create a React project and install React Suite module. Then we will create a UI that will showcase React Suite Cascader ts: Placement Props.

Creating React Project:

Step 1: To create a react app, you need to install react modules through npx command. “npx” is used instead of “npm” because you will be needing this command in your app’s lifecycle only once.

npx create-react-app project_name

Step 2: After creating your react project, move into the folder to perform different operations.

cd project_name

Step 3: After creating the ReactJS application, Install the required module using the following command:

npm install rsuite

Project Structure: After running the commands mentioned in the above steps, if you open the project in an editor you can see a similar project structure as shown below. The new component user makes or the code changes, we will be performing will be done in the source folder.

Project Structure

Example 1: We are creating a UI that shows React Suite Cascader ts: Placement Props. 

App.js




import React from 'react'
import '../node_modules/rsuite/dist/rsuite.min.css';
import { Cascader } from 'rsuite';
  
export default function App() {
    const data = [{
        label: "GFG Courses",
        value: "1",
        children: [{
            label: "DSA Self Paced Course",
            value: "1.1",
        }, {
            label: "Complete Interview Preparation - Self Paced",
            value: "1.2",
        }, {
            label: "Amazon SDE Preparation Test Series",
            value: "1.3",
        },
        ],
    }];
  
    return (
        <div style={{ margin: 50, textAlign: "center" }}>
            <h3 style={{ color: 'green' }}>
                neveropen
            </h3>
              
            <h3>React Suite Cascader ts: Placement Props</h3> 
            <br></br><br /><br />
              
            <Cascader data={data} size="lg" placement="bottomStart"
                placeholder="bottomStart" /> 
              
            <br /><br /><br /><br />
            <Cascader data={data} size="lg" placeholder="topStart" 
                placement="topStart" />
        </div>
    );
}


Step to Run Application: Run the application using the following command from the root directory of the project:

npm start

Output: Now open your browser and go to http://localhost:3000/, you will see the following output:

React Suite Cascader

Example 2: We are creating a UI that shows React Suite Cascader ts: Placement Props.

App.js




import React from 'react'
import '../node_modules/rsuite/dist/rsuite.min.css';
import { Cascader } from 'rsuite';
  
export default function App() {
    const data = [{
        label: "GFG Courses",
        value: "1",
        children: [{
            label: "DSA Self Paced Course",
            value: "1.1",
        }, {
            label: "Complete Interview Preparation - Self Paced",
            value: "1.2",
        }, {
            label: "Amazon SDE Preparation Test Series",
            value: "1.3",
        },],
    }];
  
    return (
        <div style={{ margin: 50, textAlign: "center" }}>
            <h3 style={{ color: 'green' }}>
                neveropen
            </h3>
              
            <h3>React Suite Cascader ts: Placement Props</h3> 
            <br></br>
              
            <Cascader data={data} size="lg" 
                placement="autoVerticalStart" 
                placeholder="autoVerticalStart" />
        </div>
    );
}


Output: Now open your browser and go to http://localhost:3000/, you will see the following output:

React Suite autoVerticalStart Placed Cascader

Reference: https://rsuitejs.com/components/cascader/#code-ts-placement-code

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!

Dominic Rubhabha Wardslaus
Dominic Rubhabha Wardslaushttps://neveropen.dev
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments