# Upgrade guide for Grid v5.0.2

## Widget.showByPoint() was deprecated

It has been replaced by `Widget.showBy()`, which can be called with the same signature as `showByPoint()`. Please
update any usages in your code accordingly, the function will be removed in version 6.0.

**Old code:**

```javascript
popup.showByPoint(100, 50);
```

**New code:**

```javascript
popup.showBy(100, 50);
```


<p class="last-modified">Last modified on 2023-10-26 8:19:11</p>