I've installed community edition 5.0g, but email addressbook doesn't work perfectly. When I click on the address book "Add Entries" button, a "select address book entries" panel shows up but there is no entry in the panel and no response even I click the add button on the panel.
I did have entered some contacts and users with email addresses. Is it a Bug of 5.0g? I check the program, the add button calls to the function addMultipleContacts(),
addMultipleContacts : function() {
var rows = SUGAR.email2.addressBook.grid.getSelections();
var contacts = [];
for (var i = 0; i < rows.length; i++) {
var data = rows[i].data;
contacts.push({id : data.bean_id, module : data.bean_module});
}
var contactData = JSON.stringifyNoSecurity(contacts);
SUGAR.email2.addressBook.grid.toggleSelectAll(fals e);
AjaxObject.startRequest(callbackGetUserContacts, urlStandard + "&emailUIAction=addContactsMultiple&contactDat a=" + contactData);
},
I found that the rows variable gets value 0. Can anyone help?


LinkBack URL
About LinkBacks



Reply With Quote

Bookmarks