javascript - How to toggle office-ui-fabric detailslist row selection using the entire row as a toggle instead of just using the

I'm using Office UI Fabric React ponents and i'm trying to improve change the default selecti

I'm using Office UI Fabric React ponents and i'm trying to improve change the default selection behavior for a DetailsList. By default, there is a difference between clicking a row and clicking the tiny checkbox on the right. I want the same effects of the checkbox click to apply to the row click.

When you click the checkbox it toggles the row and does not deselect other rows like when I use a row click. You can also use shift click and control click and all the other nice types of clicks as well here.

How can I make it so that clicking on a row has the same functionality as clicking on one of the checkboxes?

I'm using Office UI Fabric React ponents and i'm trying to improve change the default selection behavior for a DetailsList. By default, there is a difference between clicking a row and clicking the tiny checkbox on the right. I want the same effects of the checkbox click to apply to the row click.

When you click the checkbox it toggles the row and does not deselect other rows like when I use a row click. You can also use shift click and control click and all the other nice types of clicks as well here.

How can I make it so that clicking on a row has the same functionality as clicking on one of the checkboxes?

Share Improve this question asked Jun 20, 2019 at 18:53 PangammaPangamma 80714 silver badges31 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 6

Try using this custom onRenderRow function for the DetailsList:

onRenderRow = (props: IDetailsRowProps, defaultRender?: IRenderFunction<IDetailsRowProps>): JSX.Element => {
    return (
      <div data-selection-toggle="true">
        {defaultRender && defaultRender(props)}
      </div>
    );
  };

Works for both SelectionMode.multiple and SelectionMode.single: https://codepen.io/anon/pen/YoEzzE

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745667210a4639191.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信