How can I trigger hover event in slickgrid via javascript -


i'm writing page there many components reside in single frame. in sense, quite similar concept of single-page application. have multiple components , slickgrid table 1 of them. i'm trying unify interaction set single vocabulary, each of them getting through own channel.

however, when comes highlighting row, things got complicated. still haven't figured out way activate highlight function in slickgrid highlight specific row through javascript. possible so?

not quite sure event you're after, in slickgrid source code there's trigger function used fire slickgrid events, can use:

let trigger = (evt, args, e) => {   e = e || new slick.eventdata()   args = args || {}   args.grid = grid   return evt.notify(args, e, this.grid) } 

use like:

trigger(grid.onmouseenter, {...}) 

the missing variable here grid.


Comments