Monotone-Parent: 7cf3ceccdf6ec58d01bbf1acbd86761895dd9d7b

Monotone-Revision: 4e1bb2eb70c5ea73a7dd34b61191210beb5439f0

Monotone-Author: crobert@inverse.ca
Monotone-Date: 2009-07-07T15:02:52
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
C Robert 2009-07-07 15:02:52 +00:00
parent f5cda3a64a
commit b1f7bb8a50
4 changed files with 13 additions and 4 deletions

View File

@ -1,3 +1,10 @@
2009-07-07 Cyril Robert <crobert@inverse.ca>
* UI/WebServerResources/MailerUI.js: Fixed Drag&Drop issue (header was
draggable)
* UI/WebServerResources/ContactsUI.js: Fixed Drag&Drop issue (header was
draggable)
2009-07-03 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* UI/Scheduler/UIxCalListingActions.m (-eventsBlocksAction): added

View File

@ -23,7 +23,7 @@
><var:string label:value="Preferred Phone" /></td
></tr>
</thead>
<tbody>
<tbody id="contactsListTbody">
<var:foreach list="contactInfos" item="currentContact">
<tr class="tableview"
var:id="currentContact.c_name"

View File

@ -106,8 +106,8 @@ function contactsListCallback(http) {
table.observe("mousedown", onContactSelectionChange);
configureSortableTableHeaders(table);
TableKit.Resizable.init(table, {'trueResize' : true, 'keepWidth' : true});
configureDragAndDrop ();
}
configureDragAndDrop ();
var rows = table.tBodies[0].rows;
for (var i = 0; i < rows.length; i++) {
@ -1076,7 +1076,7 @@ function configureDragAndDrop () {
new Draggable ("dragDropVisual",
{
handle: "contactsList",
handle: "contactsListTbody",
onStart: startDragging,
onEnd: stopDragging,
onDrag: whileDragging

View File

@ -2240,9 +2240,11 @@ function configureDragAndDrop () {
mainElement.absolutize ();
mainElement.style.display = "none";
var tbody = $$("TABLE#messageList tbody").first ();
new Draggable ("dragDropVisual",
{
handle: "messageList",
handle: tbody.identify (),
onStart: startDragging,
onEnd: stopDragging,
onDrag: whileDragging