I tried to do this with CSS once, but it didn't work in IE. To do it by changing source code. In Guest.aspx, change this:
Code: function initializeSessionRow(row) {
var buttonCell = window.addCell(row);
window.addCell(row);
window.addCell(row);
window.addElement(buttonCell, "INPUT", { type: "button", commandName: "Join", value: window.Resources["GuestSessionTable.ButtonText"] });
}
function updateSessionRow(row) {
window.setElementText(row.cells[1], row.dataItem.clp.t);
window.setElementText(row.cells[2], row.dataItem.t);
}
To this:
Code: function initializeSessionRow(row) {
var buttonCell = window.addCell(row);
window.addCell(row);
window.addElement(buttonCell, "INPUT", { type: "button", commandName: "Join", value: window.Resources["GuestSessionTable.ButtonText"] });
}
function updateSessionRow(row) {
window.setElementText(row.cells[1], row.dataItem.t);
}
And get rid of this:
Code:
<th style="width: 100px;">
<%= DR.GuestSessionTable_HostHeader %>
</th>