I have several content panes within a document. I have a function which I want to refresh just one of the content panes. The function is:
function ResetContent(){
dijit.byId("DijitID").refresh();
}
For some reason this puts all of the content of the entire document into this particular content pane, rather than refreshing the content pane to what it originally looked like. How can I change this function so the content pane refreshes and displays just the same as when I refresh the entire web page? Thank you!