Skip to content
Code-Schnipsel Gruppen Projekte
Commit 2200a373 erstellt von Henning Leutz's avatar Henning Leutz :martial_arts_uniform:
Dateien durchsuchen

hklused/website#110 - Nach der einer Eingrenzung in der erweiterten Suche,...

hklused/website#110 - Nach der einer Eingrenzung in der erweiterten Suche, wird die Seitenzahl nicht aktualisiert. Es wird immer 1 von 59 Seiten angezeigt.
Übergeordneter d42f0f41
No related branches found
No related tags found
Keine zugehörigen Merge Requests gefunden
Pipeline #1011 übersprungen
...@@ -13,9 +13,10 @@ define('package/quiqqer/bricks/bin/Controls/Pagination', [ ...@@ -13,9 +13,10 @@ define('package/quiqqer/bricks/bin/Controls/Pagination', [
'qui/QUI', 'qui/QUI',
'qui/controls/Control', 'qui/controls/Control',
'qui/utils/String' 'qui/utils/String',
'Locale'
], function (QUI, QUIControl, QUIStringUtils) { ], function (QUI, QUIControl, QUIStringUtils, QUILocale) {
"use strict"; "use strict";
return new Class({ return new Class({
...@@ -190,10 +191,17 @@ define('package/quiqqer/bricks/bin/Controls/Pagination', [ ...@@ -190,10 +191,17 @@ define('package/quiqqer/bricks/bin/Controls/Pagination', [
}).inject(Prev, 'after'); }).inject(Prev, 'after');
new Element('option', { new Element('option', {
value : window.location.pathname, value : window.location.pathname,
html : i, html : QUILocale.get(
'data-page': i "quiqqer/bricks",
}).inject(this.$Select); "controls.pagination.mobile.option", {
from: i,
max : pages
}
),
'data-page': i
}
).inject(this.$Select);
} }
this.$sheets = this.$Elm.getElements('.quiqqer-sheets-sheet'); this.$sheets = this.$Elm.getElements('.quiqqer-sheets-sheet');
...@@ -232,7 +240,8 @@ define('package/quiqqer/bricks/bin/Controls/Pagination', [ ...@@ -232,7 +240,8 @@ define('package/quiqqer/bricks/bin/Controls/Pagination', [
self.fireEvent('change', [self, this, Query]); self.fireEvent('change', [self, this, Query]);
}); });
}, }
,
/** /**
* link / page click * link / page click
...@@ -260,7 +269,8 @@ define('package/quiqqer/bricks/bin/Controls/Pagination', [ ...@@ -260,7 +269,8 @@ define('package/quiqqer/bricks/bin/Controls/Pagination', [
this.openPage(parseInt(Target.get('data-page') - 1)); this.openPage(parseInt(Target.get('data-page') - 1));
} }
}, }
,
/** /**
* Open page number and trigger the change event when it is necessary * Open page number and trigger the change event when it is necessary
...@@ -284,7 +294,8 @@ define('package/quiqqer/bricks/bin/Controls/Pagination', [ ...@@ -284,7 +294,8 @@ define('package/quiqqer/bricks/bin/Controls/Pagination', [
this.setPage(no); this.setPage(no);
this.fireEvent('change', [this, Sheet, query]); this.fireEvent('change', [this, Sheet, query]);
}, }
,
/** /**
* Open page number and does not trigger the change event * Open page number and does not trigger the change event
...@@ -316,7 +327,8 @@ define('package/quiqqer/bricks/bin/Controls/Pagination', [ ...@@ -316,7 +327,8 @@ define('package/quiqqer/bricks/bin/Controls/Pagination', [
// repaint if next sheet is in the hidden last // repaint if next sheet is in the hidden last
this.$redraw(); this.$redraw();
}, }
,
/** /**
* Go to the next page * Go to the next page
...@@ -332,7 +344,8 @@ define('package/quiqqer/bricks/bin/Controls/Pagination', [ ...@@ -332,7 +344,8 @@ define('package/quiqqer/bricks/bin/Controls/Pagination', [
if (currentPage < this.$sheets.length) { if (currentPage < this.$sheets.length) {
this.openPage(currentPage); this.openPage(currentPage);
} }
}, }
,
/** /**
* Go to the previous page * Go to the previous page
...@@ -351,21 +364,24 @@ define('package/quiqqer/bricks/bin/Controls/Pagination', [ ...@@ -351,21 +364,24 @@ define('package/quiqqer/bricks/bin/Controls/Pagination', [
} }
this.first(); this.first();
}, }
,
/** /**
* Go to the first page * Go to the first page
*/ */
first: function () { first: function () {
this.openPage(0); this.openPage(0);
}, }
,
/** /**
* Go to the last page * Go to the last page
*/ */
last: function () { last: function () {
this.openPage(this.$sheets.length - 1); this.openPage(this.$sheets.length - 1);
}, }
,
/** /**
* new draw aff the pagination * new draw aff the pagination
...@@ -449,5 +465,7 @@ define('package/quiqqer/bricks/bin/Controls/Pagination', [ ...@@ -449,5 +465,7 @@ define('package/quiqqer/bricks/bin/Controls/Pagination', [
this.$MoreNext.setStyle('display', null); this.$MoreNext.setStyle('display', null);
} }
} }
}); })
}); ;
})
;
0% oder .
You are about to add 0 people to the discussion. Proceed with caution.
Bearbeitung dieser Nachricht zuerst beenden!
Bitte registrieren oder zum Kommentieren