I have slick grid that I want to change row background color, when I find search result:
protected showMatchItem() {
this.searchresult.text(`${this.currentMatchIndex + 1} از ${this.matchIndexes.length}`);
this.slickGrid.scrollRowIntoView(this.matchIndexes[this.currentMatchIndex], true);
this.slickGrid.setCellCssStyles("highlight", this.matchIndexes[this.currentMatchIndex]) ;
}
.highlight { background: yellow }