admin管理员组文章数量:1026989
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 badges1 Answer
Reset to default 6Try 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
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 badges1 Answer
Reset to default 6Try 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
本文标签:
版权声明:本文标题:javascript - How to toggle office-ui-fabric detailslist row selection using the entire row as a toggle instead of just using the 内容由热心网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://it.en369.cn/questions/1745667209a2162245.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论