One of the nuisances of SharePoint is SharePoint Designer.
“Path to SharePoint” provides a good alternative to this here: http://pathtosharepoint.wordpress.com/2009/01/22/a-simple-method-to-disp…
Two options are an iFrame or, what I opted for, JQuery:
#
# Christophe@PathToSharePoint.com –>
#
#
#
# // Paste the URL of the source list below:
# var SelectedView = “http://domain.com/SiteCollection1/SourceSite/SourceList/MyView.aspx”;
# $(“#ListPlaceholder”).load(SelectedView+” #WebPartWPQ1 .ms-listviewtable”,function() {
# $(“#ListPlaceholder *”).removeAttr(“id”);
# $(“#ListPlaceholder *”).removeAttr(“onclick”);
# $(“#ListPlaceholder *”).removeAttr(“onfocus”);
# $(“#ListPlaceholder *”).removeAttr(“onmouseover”);
# });
#
Thanks, Christophe!
Kudos! What a neat way of thnnkiig about it.