CC-3174 : Show builder, working on date choice pickers, make sure they accomodate client/server timezones.

This commit is contained in:
Naomi Aro 2012-01-23 19:07:07 +01:00
parent 424206b9a9
commit ecaebbeb67
13 changed files with 1715 additions and 996 deletions

View file

@ -11,4 +11,21 @@ function dtDrawCallback() {
addLibraryItemEvents();
//addMetadataQtip();
//setupGroupActions();
}
function addLibraryItemEvents() {
$('#library_display tr')
.draggable({
helper: 'clone',
cursor: 'pointer',
connectToSortable: '#show_builder_table'
});
$('#library_display tbody tr td').not('[class=library_checkbox]')
.jjmenu("click",
[{get:"/Library/context-menu/format/json/id/#id#/type/#type#"}],
{id: getId, type: getType},
{xposition: "mouse", yposition: "mouse"});
}