0
dynatreeノードのノード をクリックするとjspページまたはinnerHTML(HTMLコンテンツが追加されます)を表示します。DynatreeノードのノードでポートレットonClickをロードする方法
私はコードに示されているようにしようとしていますが、うまくいきません。
助けてください
ありがとう!
// Ajax call
$.ajax({
url : TREE_NAV_SERVLET,
type: "GET",
data: "pName="+node.data.title,
dataType : 'text',
success : function(responseHTML) {
alert("ResponseText :: "+responseHTML);//This is working fine
//not able to load this even though path is correct
$("[id=content]").attr("src",'/Path/JspToBeLoaded.jsp');
// or The following
//This loads the portlet with the with new
//content and removes the dynatree which is not required both should be there
//$("#content").innerHTML(responseHTML);
}
});
//Div tag which is the point where I want to display the data/JSP
<div id="content"></div> //Response goes here