Search code examples
react-dropdown-tree-select

How do I change the placeholder text?


Adding the following prop does not seem to work

text={{placeholder: "Select product"}}

<DropdownTreeSelect
      data={data}
      texts={{placeholder: 'Some other text'}}
      onChange={onChange}
      className="bootstrap-demo"
    />

Placeholder text still shoews default "Choose ..."


Solution

  • The prop name is placeholderText try:

    <DropdownTreeSelect
          data={data}
          placeholderText={'Some other text'}
          onChange={onChange}
          className="bootstrap-demo"
        />