I want to go to some specific page when I have selected the Item in that field. I have tried the following way
import {DataViewModule, DataView} from 'primeng/dataview';
// ...
@ViewChild('dataview') dataTable: DataView;
// ...
if (this.selectIndustry) {
const indxOfIndustry = industries.indexOf(this.selectedIndustry);
const pageNo = (indxOfIndustry / 10) + 1;
const paging = {
first: ((pageNo - 1) * 10),
rows: 10
};
this.dataTable.paginate(paging);
}
But I am getting error message like undefined dataView