2

Ant Design has a rowSelection feature to use on their <Table /> element, and looks like so: Ant Design Original

I don't see anywhere that would indicate a multi-column row selection, like so: Ant Design / altered image

I've checked out this Github issue that I thought was asking the same thing, and this PR that supposedly addressed it, but I cannot figure out how it supposed to be used (perhaps I'm mistaken that it has been implemented).

Is this currently possible to achieve using existing Ant Design code, or would something custom need to be implemented?

Version: We are using Ant Design 3.9.3

Gregg Bursey
  • 1,097
  • 2
  • 11
  • 16

2 Answers2

1

Using antd code you can make some kind of mix between Multiple Row selection and Editable cell/row (with checkbox instead of inputs)

But I'm afraid you can't make various selectable columns. At least the documentation does not mention anything like this.

froston
  • 1,027
  • 1
  • 12
  • 24
0

What you can do in table Column Array, you can do this

  {
    title: "Can Do Y ", 
    key: "canDoY",
    width: 100,
    render: val => <Checkbox value={val}> </Checkbox>
  }