How to prevent a row form been selected (activated) ?
See original GitHub issueI’m submitting a … (check one with “x”)
[ ] bug report => search github for a similar issue or PR before submitting
[ ] feature request
[x] support request => Please do not submit support request here
Hello, how can I prevent a row form been selected (activated) ?
Issue Analytics
- State:
- Created 7 years ago
- Comments:6 (1 by maintainers)
Top Results From Across the Web
How can I Prevent row activation | Infragistics Forums
You can prevent row activation by responding to the AfterRowActivate event. I am using a binding source and this seems to work for...
Read more >Preventing a row from being selected in UI for WPF - Telerik
I have a RadGridView that uses a GridViewSelectColumn to facilitate row selection. However, under certain circumstances, I would like to prevent ...
Read more >How can I prevent a row from being selected when clicking on ...
Use the select.selector option to control which columns are used for row selection. Kevin. bonaventure ...
Read more >How to disable the ability to select in a DataGridView?
I'd go with this: private void myDataGridView_SelectionChanged(Object sender, EventArgs e) { dgvSomeDataGridView.ClearSelection(); }.
Read more >More on data validation - Microsoft Support
Data Validation Input and Error Messages ; Stop icon. Stop. Prevent users from entering invalid data in a cell. A Stop alert message...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
See: https://github.com/swimlane/ngx-datatable/blob/master/docs/api/table/inputs.md#selectcheck … there is a demo for this too.
I believe because of “Working as Intended” status here we have omission in requirements. Have a look please on tree behaviour of OS windows managers (MacOS - Finder, Windows - Explorer). When user toggles a tree icon view does not show (select) folder content. There is very simple use case when user toggles a row (treeAction event) to not select the row.
Suppose on row click in a tree table you want to fetch data from a server. Now on any treeAction event we have onSelect (or onActivate) event. Thus, we will have redundant server requests …
If we try to use selectCheck (as suggested above) the question is how to decide do we have treeAction click or click on the row (onActivate or onSelect)?! 🤷♀️