'listHiddenVarInfos': tuple(hidden_vars),
'listButtonInfos': tuple(buttons),
'is_orderable': is_orderable,
- 'is_sortable': is_sortable }
+ 'is_sortable': is_sortable,
+ 'items_add_allowed': items_add_allowed }
if not ajax and is_orderable :
deltas = range( 1, min(5, length) ) + range(5, length, 5)
options['form']['listDeltas'] = tuple(deltas)
addListener(topNavBatchBar, "click", loadListing);
addListener(bottomNavBatchBar, "click", loadListing);
}
+
+ }());
+ </script>
+ <script type="text/javascript" tal:condition="options/form/items_add_allowed">
+ (function(){
// upload by drag and drop
var uploadUrl = absolute_url() + '/put_upload';
- new DDFolderUploader(document.getElementById('ForematterCell'), uploadUrl, listing);
-
+ new DDFolderUploader(document.getElementById('ForematterCell'), uploadUrl, document.getElementById("FolderListingBody"));
}());
</script>
</body>