mirror of
https://github.com/django/django.git
synced 2025-08-03 02:23:12 +00:00
Fixed #31522 -- Made admin's SelectBox preserve scroll position.
This commit is contained in:
parent
1e3ceb485e
commit
2d67222472
2 changed files with 26 additions and 0 deletions
|
@ -21,3 +21,27 @@ QUnit.test('filter', function(assert) {
|
|||
assert.equal($('#id option').length, 1);
|
||||
assert.equal($('#id option').text(), "A");
|
||||
});
|
||||
|
||||
QUnit.test('preserve scroll position', function(assert) {
|
||||
const $ = django.jQuery;
|
||||
const optionsCount = 100;
|
||||
$('<select id="from_id" multiple></select>').appendTo('#qunit-fixture');
|
||||
$('<select id="to_id" multiple></select>').appendTo('#qunit-fixture');
|
||||
const fromSelectBox = document.getElementById('from_id');
|
||||
const toSelectBox = document.getElementById('to_id');
|
||||
for (let i = 0; i < optionsCount; i++) {
|
||||
fromSelectBox.appendChild(new Option());
|
||||
}
|
||||
SelectBox.init('from_id');
|
||||
SelectBox.init('to_id');
|
||||
const selectedOptions = [97, 98, 99];
|
||||
for (const index of selectedOptions) {
|
||||
fromSelectBox.options[index].selected = true;
|
||||
fromSelectBox.options[index].scrollIntoView();
|
||||
}
|
||||
assert.equal(fromSelectBox.options.length, optionsCount);
|
||||
SelectBox.move('from_id', 'to_id');
|
||||
assert.equal(fromSelectBox.options.length, optionsCount - selectedOptions.length);
|
||||
assert.equal(toSelectBox.options.length, selectedOptions.length);
|
||||
assert.notEqual(fromSelectBox.scrollTop, 0);
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue