# How do I disable default selection?

**URL:** https://forum.techsoft3d.com/t/how-do-i-disable-default-selection/4169
**Category:** HOOPS Visualize Web
**Tags:** how-to
**Created:** [November 3, 2024, 5:32pm UTC](https://forum.techsoft3d.com/t/how-do-i-disable-default-selection/4169 "2024-11-03T17:32:08Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![zak](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.techsoft3d.com/zak/32/1678_2.png) [@zak](https://forum.techsoft3d.com/u/zak)
#### Post date: [November 3, 2024, 5:32pm UTC](https://forum.techsoft3d.com/t/how-do-i-disable-default-selection/4169/1 "2024-11-03T17:32:08Z")

</div>

I want to implement my own selection strategy (using `view.pickFromPoint` api), but no matter what I do (even disabling my selection) I always get values populated in the `selectionArray` callback.

Is there a configuration that I haven’t found to turn off the default selection behavior of the seletion manager?

---

<div class="post-metadata">

### Author: ![zak](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.techsoft3d.com/zak/32/1678_2.png) [@zak](https://forum.techsoft3d.com/u/zak)
#### Post date: [November 3, 2024, 5:47pm UTC](https://forum.techsoft3d.com/t/how-do-i-disable-default-selection/4169/2 "2024-11-03T17:47:27Z")

</div>

I think I found it:

```auto
viewer.view.operatorManager.remove(OperatorId.Select);

```
