data table is formatted correctly

This commit is contained in:
daviddelikat 2009-10-27 08:58:01 -05:00
parent bd6d061f51
commit 1155408243

View file

@ -355,20 +355,6 @@ WebGUI.EMS.formatTitle = function ( elCell, oRecord, oColumn, orderNumber ) {
;
};
//***********************************************************************************
WebGUI.EMS.formatLastReply = function ( elCell, oRecord, oColumn, orderNumber ) {
var lastReplyDate = oRecord.getData('lastReplyDate');
if(lastReplyDate) {
elCell.innerHTML = oRecord.getData('lastReplyDate')
+ ' by '+ '<a href="' + getWebguiProperty('pageURL') + "?op=viewProfile;uid=" + oRecord.getData('lastReplyById') + '" class="profile_link">'
+ oRecord.getData( 'lastReplyBy' )
+ '</a>';
}
else {
elCell.innerHTML = "";
}
};
//***********************************************************************************
WebGUI.EMS.buildQueryString = function ( state, dt ) {
var query = ";startIndex=" + state.pagination.startIndex