How to programmatically trigger a click event on a specific grid row in JqGrid

I have a scenario where I have several jqgrids. Tapping a row in one grid reloads another. Now I need to do this programmatically. I want to fire the rowclick event when some other event occurs (for example, the onclose dialog - it doesn't really matter which event). Important is the availability of the grid line number as an available parameter. Is there any way to do this?

+4
source share
1 answer

You can use setSelection to select a row. Watch the small demo I wrote for you to demonstrate this.

+5
source

Source: https://habr.com/ru/post/1337113/


All Articles