This is my source based on com_zimbra_sforce.
/// Called by the Zimbra framework when the SForce panel item was clicked
Com_Zimbra_Osc.prototype.singleClicked = function() {
alert('singleClicked start');
//I want to display "display japanese:テスト"
alert('display japanese:テスト');
if(!this.sessionID) {
alert('login');
this.login();
}
else {
alert('get Meeting');
this.get_meeting();
}
alert('singleClicked end');
} |