Actually, this had been an earlier feature, but a typo had disabled
it. This version is a bit tighter anyway.
If you click on Resequence Items, a short explanatory message will
appear below the link.
git-svn-id: svn://svn.open-ils.org/ILS-Contrib/servres/trunk@447
6d9bc8c9-1ec2-4278-b937-
99fde70a366f
* factor out hardcoded references to the EG server.
-* People should be able to register themselves into open courses.
- That is, actually become a member of them.
-
* Notify circulation of wanted items. What should it do?
* set up a proper issue-tracker?
> Course details -- seems a little terse -- but may be what folks use
-> Sequencing -- easy! Save -- maybe make a button? [where's my narrative?]
-
> Notify circulation of wanted items -- FAIL
-
+
> Why is staff a member of a course? is that a requirement? (proxy
> instructor makes more sense; but how to accomplish that?).
* save-sequence fails on IE6.
+* People should be able to register themselves into open courses.
+ That is, actually become a member of them.
+
+> Sequencing -- easy! Save -- maybe make a button? [where's my narrative?]
+ [I didn't make it a button, but I did add the narrative back.]
+
if (!resequencing) {
$('.itemtree:nth(0)').sortable({axis:'y'});
$('.itemtree:nth(0) > .an_item').addClass('sort_item');
- $('#resequence_panel').after($('#ropanelmessage'));
+ //$('#resequence_panel').after($('#ropanelmessage'));
+ $('#ropanelmessage').show();
$('#resequence_panel a').text($('#i18n-save-order').text());
resequencing = true;
} else {
$('.an_item').removeClass('sort_item');
- $('#ropanelmessage').remove();
+ $('#ropanelmessage').hide();
$('#resequence_panel a').text('...');
$('.itemtree').sortable('destroy');
resequencing = false;
<div py:def="item_resequence_panel()" py:strip="True">
<div id="resequence_panel" class="little_action_panel">
<a href="javascript:doResequence();">Resequence items</a>
+ <div id="ropanelmessage" style="clear: right; display: none;"
+ class="little_action_panel">Drag the items around. Then click Save Sequence, above.</div>
</div>
<div style="display: none;">
<span id="i18n-save-order">Save Sequence</span>
<span id="i18n-resequence-items">Resequence Items</span>
<span id="i18n-new-order-saved">The new sequence has been saved.</span>
- <div id="eropanelmessage" style="clear: right; width: 10em;"
- class="little_action_panel">Drag the items around. Then click Save Sequence, above.</div>
</div>
</div>