문제

How to reload any slickgrid dataview?

Is there any methods in slickgrid API to do so?

도움이 되었습니까?

해결책

dataView.setItems([new_data]). You shouldn't need anything else.

다른 팁

Also take a look at DataView, a custom data provider Leibman created. Looks like anything that implements getLength(), getItem(idx), and getItemMetadata(idx) can provide data.

Looks like the way to go if you have a large data set and want awesome performance.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top