Hi,
If you want to include a list view web part in your form you must could use some custom js to show it in one specific tab.
I haven’t done this myself, but if you inspect the list view and find an ID of one of the outer elements in the view you can add this to your custom js:
(function(){
var yourCustomElemetID = "The_id_you_get_from_inspect";
// Hide initially
jQuery("#" + yourCustomElemetID).hide();
var isHidden = true;
setInterval(function(){
var sTab = spjs.dffs.data.selectedTab;
if(sTab === 2){
if(isHidden){
jQuery("#" + yourCustomElemetID).show();
isHidden = false;
}
}else{
if(!isHidden){
jQuery("#" + yourCustomElemetID).hide();
isHidden = true;
}
}
},250);
})();
Replace The_id_you_get_from_inspect with the ID you find from the inspect of the list view and the 2 in if(sTab === 2) to the index of the tab you want to show it in.
Please note that I haven’t tested this code – it is just written freehand here so It might need some tweaking.
Alexander