Fixing a Sametime 7.5 Meeting Center bug
Category None
The Sametime 7.5 meeting center client has a bit of an obvious bug in one of the touted new features, it's a bit of a pain as it does generate support calls, which every enterprise hates, but it is fairly easy to fix with a little domino designer work. I shared this fix with attendees at the Collaboration University and as that event is over now, I can share it with you. The bug is basically that the text for a meeting description does not wrap in the meeting client, so all that useful information a user enters about the meeting is often not seen by users, as can be seen here
The fix will make the text look like this
We can't modify the Sametime Meeting Center applet, so we have to find a way to modify the text before it gets to the meeting center applet. We can do this by modifying the Meeting Center database stconf.nsf (or the template if you still inherit the template design), here are the steps to address the issue:
The Sametime 7.5 meeting center client has a bit of an obvious bug in one of the touted new features, it's a bit of a pain as it does generate support calls, which every enterprise hates, but it is fairly easy to fix with a little domino designer work. I shared this fix with attendees at the Collaboration University and as that event is over now, I can share it with you. The bug is basically that the text for a meeting description does not wrap in the meeting client, so all that useful information a user enters about the meeting is often not seen by users, as can be seen here
The fix will make the text look like this
We can't modify the Sametime Meeting Center applet, so we have to find a way to modify the text before it gets to the meeting center applet. We can do this by modifying the Meeting Center database stconf.nsf (or the template if you still inherit the template design), here are the steps to address the issue:
- Open suBforms WebMeeting-IE and WebMeeting-Moz and make the following changes to both subforms
- Locate the line that contains <label for="bo">
- Click on the Rich Text field "Body" that is on the same line
- Select the Web JavaScript onBlur event for the field
- Enter the following JavaScript
String.prototype.wordWrap =function(m, b, c){
var i, j, s, r = this.split("\n");
if(m > 0) for(i in r){
for(s = r[i], r[i] = ""; s.length > m;
j = c ? m : (j = s.substr(0, m).match(/\S*$/)).input.length - j[0].length
|| m,
r[i] += s.substr(0, j) + ((s = s.substr(j)).length ? b : "")
);
r[i] += s;
}
return r.join("\n");
};
this.value = this.innerText.wordWrap(50, '\n', false);
Comments
Posted by Tom Hurlebaus At 01:43:01 PM On 12/04/2006 | - Website - |