-{% if inline_admin_formset.opts.sortable_field_name %}
- /**
- * sortable inlines
- * uses onAdded() and onRemoved() of inline() call above
- * uses sortable_updateFormIndex() and is_form_filled() from change_from.html
- */
-
- // hide sortable_field(_name) from form
- // hide div.td.{{ field.name }}
- var position_nodes = $("#{{ inline_admin_formset.formset.prefix }}-group").find("div.td.{{ inline_admin_formset.opts.sortable_field_name }}");
- position_nodes.hide();
-
- // hide its header (div.th) too (hard)
- // "div.th.{{ inline_admin_formset.opts.sortable_field_name }}" is not correct because
- // its div.th.<field.label> (and not name, see line#18).
-
- // so let's get the "position/idx" the first position div
- var tabular_row = position_nodes.first().parent().children("div.td");
- // get the "position" (== i) in the "table"
- for (var i = 0; i < tabular_row.length; i++) {
- if ($(tabular_row[i]).hasClass("{{ inline_admin_formset.opts.sortable_field_name }}")) break;
- }
- // we have the same order in the header of the "table"
- // so delete the div at the "position" (== i)
- var position_header = $("#{{ inline_admin_formset.formset.prefix }}-group").find("div.th")[i];
- // and hide
- $(position_header).hide()
-
- {% if errors %}
- // sort inline
- var container = $("#{{ inline_admin_formset.formset.prefix }}-group > div.table"),
- dynamic_forms = container.find("div.dynamic-form"),
- updated = false,
- curr_form,
- real_pos;
-
- // loop thru all inline forms
- for (var i = 0; i < dynamic_forms.length; i++) {
- curr_form = $(dynamic_forms[i]);
- // the real position according to the sort_field(_name)
- real_pos = curr_form.find("div.{{ inline_admin_formset.opts.sortable_field_name }}").find("input").val();
- // if there is none it's an empty inline (=> we are at the end)
- // TODO: klemens: maybe buggy. try continue?
- if (!real_pos) continue;
-
- real_pos = parseInt(real_pos, 10);
-
- // check if real position is not equal to the CURRENT position in the dom
- if (real_pos != container.find("div.dynamic-form").index(curr_form)) {
- // move to correct postition
- curr_form.insertBefore(container.find("div.dynamic-form")[real_pos]);
- // to update the inline lables
- updated = true;
- }
- }
-
- {% endif %}
+ $("#{{ inline_admin_formset.formset.prefix }}-group").grp_inline({
+ prefix: "{{ inline_admin_formset.formset.prefix }}",
+ onBeforeAdded: function(inline) {},
+ onAfterAdded: function(form) {
+ grappelli.reinitDateTimeFields(form);
+ grappelli.updateSelectFilter(form);
+ $.each(related_lookup_fields_fk, function() {
+ form.find("input[name^='" + prefix + "'][name$='" + this + "']")
+ .grp_related_fk({lookup_url:"{% url grp_related_lookup %}"});
+ });
+ $.each(related_lookup_fields_m2m, function() {
+ form.find("input[name^='" + prefix + "'][name$='" + this + "']")
+ .grp_related_m2m({lookup_url:"{% url grp_m2m_lookup %}"});
+ });
+ $.each(related_lookup_fields_generic, function() {
+ var content_type = this[0],
+ object_id = this[1];
+ form.find("input[name^='" + prefix + "'][name$='" + this[1] + "']")
+ .each(function() {
+ var i = $(this).attr("id").match(/-\d+-/);
+ if (i) {
+ var ct_id = "#id_" + prefix + i[0] + content_type,
+ obj_id = "#id_" + prefix + i[0] + object_id;
+ $(this).grp_related_generic({content_type:ct_id, object_id:obj_id, lookup_url:"{% url grp_related_lookup %}"});
+ }
+ });
+ });
+ },
+ });