Ron - Thursday, January 20, 2011 10:34 AM:
I was trying to install Meeting Manager, the import failed, but I was able to get it installed using NASH. In testing I noticed that the method for adding assignee to the drop down list is not working. if I have multiple members to the meeting, all members names are concatenated to one line item on the assignee drop down list for action items, once this happens you can not save. I test with only one attendee and still can not assign an action item.
This looks to be a good feature to add to Innovator and I would like to see it function. Has anyone used this on 9.2, was there any changes required to get it to function.
Thanks
Ron
drnorthcott - Sunday, March 13, 2011 11:19 PM:
Hi Ron,
I'm working on this too, did the same thing as you and jammed it in using NASH. Then I tried again with the upload tool by modifying the itemtype XML files by deleting the reference to default lifecycle and track history in the aml. It looked like I was getting somewhere with this tactic too, trying to delete these failure points. Then I just manually added the lifecycles that were causing the problem by editing the Item Types in Aras.
The problem loading the attendees to the dropdown control seems to be in a client-side javascript method called "Action Item Assignee Dropdown" at the very bottom of this method. It seems to be taking the "|" character too literally. I'm no javascript expert and I couldn't find any documentation about the gridApplet, and how to properly use setCombo to add N attendees so I gave up. Let me know if you figure it out.
// Add the dropdown to the cell gridApplet
.cells(relationshipID,targetColumnIndex).setEditType(2);
gridApplet
.cells(relationshipID,targetColumnIndex).setCombo(nameArray.join("|"), idArray.join("|"));
rdb1536 - Monday, May 16, 2011 3:21 PM:
I was able to get the correct display of assignees by changing the grid delimiter "|" to "$"
setCombo(nameArray.join("$"), idArray.join("$"));
The results are what I expected, selectable combo box populated with attendees in a vertical row:
attendee1
attendee2
attendee3
Instead of |attendee1|attendee2|attendee3
BUT...I know get an error:
String or binary data would be truncated. The statement has been terminated
rdb1536 - Monday, May 16, 2011 5:17 PM:
Clarification of the SQL error "String or binary data would be truncated. The statement has been terminated". I only receive this error on the first meeting that was recorded. All other meetings allow me to add and assign action items to assignee's without any errors.
Rick