In my attempt to present multiple list data, I have ventured into the territory of the DVWP.
I have three lists A, B, C. Each of these lists are interrelated. When click the title from List A, I want to show data related to that row from list B. So I created a custom DispForm.aspx, added a Text Filter and Dataview Web Parts. I created a parameter in the DVWP that is written to based upon the text filter. Using jquery, I am writing to the hidden text filter and calling its change method (below). I added some handling to ensure I am only doing this once.
What I have now noticed is that the Page group in the ribbon is now not loading after I write to the text filter and call the change(). I recognize I am likely doing this wrong, so will accept any help in delving into this....Paging sympmarc? LOL
$(document).ready(function(){
var input = $('input[id$="SPTextSlicerValueTextControl"]');
if (input.val() == "") {
var StoreNum = $("#tdStoreNumber").text();
input.val(StoreNum);
input.change();
//alert(inputs);
}
});