Again,
From My javascript file, how do I call
ZmConv.prototype._loadMsgs =
function(convNode) {
// for all messages in this conversation,
var childNodes = convNode.childNodes;
var len = childNodes.length;
for (var i = 0; i < len; i++) {
if (childNodes[i].nodeName == "m")
this.msgs.addFromDom(childNodes[i]);
}
};
What do I pass in as a convNode??
An Javascript sample of getting the ZmMailMsg from a ZmConv would be nice. |