Ver código fonte

Correctif sortable with tree

feature/symfony6.1
Fab 2 anos atrás
pai
commit
82f3e2485b
3 arquivos alterados com 11 adições e 5 exclusões
  1. +6
    -0
      Doctrine/Extension/SortableTrait.php
  2. +3
    -3
      Resources/assets/app/adminlte/sort/sort.js
  3. +2
    -2
      Resources/views/adminlte/crud/sort.html.twig

+ 6
- 0
Doctrine/Extension/SortableTrait.php Ver arquivo

@@ -31,4 +31,10 @@ trait SortableTrait
$this->position = $position;
return $this;
}

public function clearPosition(): self
{
$this->position = null;
return $this;
}
}

+ 3
- 3
Resources/assets/app/adminlte/sort/sort.js Ver arquivo

@@ -23,13 +23,13 @@ function initSovSortableList() {

$(li).append(newForm);
$(li).find('#form_entities_' + index + '_id').val($(li).data('id'));
if ($('.sov-sortable').data('parent-position') !== '') {
/* if ($('.sov-sortable').data('parent-position') !== '') {
//Ajout d'un 0 initial pour les nuémros <10
indexAsString = index.toString().padStart(2, '0');
val = $('.sov-sortable').data('parent-position') + '.' + indexAsString
} else {
} else {*/
val = index;
}
//}
$(li).find('#form_entities_' + index + '_position').val(val);
});


+ 2
- 2
Resources/views/adminlte/crud/sort.html.twig Ver arquivo

@@ -48,8 +48,8 @@
{% block body %}

<div class="table-responsive">
<table class="table table-bordered table-hover table-striped sov-sortable"
data-parent-position="{{ ea.entity is defined and ea.entity.instance is not null ? ea.entity.instance.position : '' }}">
<table class="table table-bordered table-hover table-striped sov-sortable">
{# data-parent-position="{{ ea.entity is defined and ea.entity.instance is not null ? ea.entity.instance.position : '' }}" #}
<thead>
{% block table_head %}
<tr>

Carregando…
Cancelar
Salvar