Hello! I am working on this project where I want VDMList component to display only certain documents using dql. However, I am not able to override my code on the onInit method of the VDMList class. See code below:
public class CustomVDMList extends VDMList{
public void onInit(ArgumentList args) {
super.onInit(args);
updateControl();
}
public void updateControl(){
//my code here
}
}
Please help! The approach I used on inbox list worked with updateDatagridControl() method, I tried all methods in the VDMList but so far no luck.