Questions tagged [rsuite]
55 questions
0
votes
1 answer
How to remove the chat value in array tab in react
tabs: [ '/home', '/about', '/chat' ];
}
moreProps={{ noCaret: true }}
…
user13780186
0
votes
2 answers
How to fix the date[] is not assignable to type [date?, date?] in react hook
What I'm trying to do is to set a date on date range but there's an error which is
Type 'Date[]' is not assignable to type '[Date?, Date?]'.
Types of property 'length' are incompatible.
Type 'number' is not assignable to type '0 | 1 |…
user13780186
0
votes
1 answer
RSuite error messages translate using rsuite Schema. NextJS i18n
I face a little problem with RSuite and schema error handling. Right now I can't translate error messages from Schema because Schema is written outside component, so I can't use hooks. Is it possible to translate error messages outside the…

Evald Doda
- 63
- 1
- 2
- 6
0
votes
1 answer
React suite error: component is not exported from 'rsuite'
I just found out about react suite and it's really good but I can't figure out this error that says component is not exported from rsuite per example 'Attempted import error: 'Card' is not exported from 'rsuite'.' and this is happening very often…

syc
- 15
- 7
0
votes
1 answer
React Suite Accepter Component Not Updating Form Value On Change
I am using rsuitejs for components, and in a form I am creating I have a custom slider called MotivationSlider which isn't updating the data in the form it's in when the value is changed. The custom Slider looks like this:
import React, { useState…

Michael Scott
- 539
- 3
- 8
- 18
0
votes
1 answer
How to use rsuite - React Suite range slider?
Good evening,
I'm using the UI framework rsuite (React suite) for the first time, the setup was just fine, but when i wanted to use the API of the component Slider - Range slider, the labels and the tooltips are not working.
Here is some code…

EL-Mehdi Loukach
- 732
- 2
- 9
- 28
0
votes
3 answers
How to change the position of the menu in rsuite DateRangePicker?
I'm using rsuite DateRangePicker and the component is displayed on the right. When I open the menu to select a date, the menu get out of the page container and I have to scroll the page to the right in order to see the entire menu.
I'm looking for…

S.R
- 75
- 7
0
votes
1 answer
rsuite-table not updating when state data is changed
Here is my render method
render() {
return (
-
{this.state.data.map((obj) => (
- {obj.name} ))}