$conf, $runtime; function_exists('chdir') AND chdir(APP_PATH); $r = 'mysql' == $conf['cache']['type'] ? website_set('runtime', $runtime) : cache_set('runtime', $runtime); } function runtime_truncate() { global $conf; 'mysql' == $conf['cache']['type'] ? website_set('runtime', '') : cache_delete('runtime'); } register_shutdown_function('runtime_save'); ?>javascript - How to toggle office-ui-fabric detailslist row selection using the entire row as a toggle instead of just using the|Programmer puzzle solving
最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

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

matteradmin13PV0评论

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

Post a comment

comment list (0)

  1. No comments so far