dependabot[bot] on npm_and_yarn
Bump async from 2.6.3 to 2.6.4 … (compare)
picture
or picture-card
. I think if I use showUploadList
and set showPreviewIcon
on true that will be work for me. But it can show downloadIcon
and removeIcon
. But I need iconPreview also. Btw I use 3.x version of ant-design
Hello
help please, is there an analogue react-split-pane or how to do this on antd?
described the question in detail here:
https://stackoverflow.com/questions/63971915/analog-react-split-pane-or-how-to-implement-on-ant-design
Thank's
Hello
help please, is there an analogue react-split-pane or how to do this on antd?
described the question in detail here:
https://stackoverflow.com/questions/63971915/analog-react-split-pane-or-how-to-implement-on-ant-designThank's
No ideas? ((
In REACT, let says you have those AntD checkboxes:
[x] Allan
[x] Ben
[x] Tom
And this AntD table:
Name Age
Allan 53
Ben 23
Tom 40
As the names get checked/unchecked, I want the grid to only display checked items (rows). I'd prefer not to build and set a new dataSource each time the checkboxes change state.
Hey guys, needed some help. I have this piece of code...
<Select
id="trains"
name="trains"
mode="multiple"
allowClear
placeholder="Select Course Trainers"
defaultValue={initialValues.assignedTrainers.map(trainer => (
<Select.Option key={trainer._id} value={trainer._id}>
{trainer.username}
</Select.Option>
))}
>
{initialValues.trainers.map(trainer => (
<Select.Option key={trainer._id} value={trainer._id}>
{trainer.username}
</Select.Option>
))}
</Select>
Form changes don’t persist on tab switching
Any idea?