| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597 |
- (function (global, factory) {
- if (typeof define === "function" && define.amd) {
- define([], factory);
- } else if (typeof exports !== "undefined") {
- factory();
- } else {
- var mod = {
- exports: {}
- };
- factory();
- global.bootstrapTable = mod.exports;
- }
- })(this, function () {
- 'use strict';
- var _slicedToArray = function () {
- function sliceIterator(arr, i) {
- var _arr = [];
- var _n = true;
- var _d = false;
- var _e = undefined;
- try {
- for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) {
- _arr.push(_s.value);
- if (i && _arr.length === i) break;
- }
- } catch (err) {
- _d = true;
- _e = err;
- } finally {
- try {
- if (!_n && _i["return"]) _i["return"]();
- } finally {
- if (_d) throw _e;
- }
- }
- return _arr;
- }
- return function (arr, i) {
- if (Array.isArray(arr)) {
- return arr;
- } else if (Symbol.iterator in Object(arr)) {
- return sliceIterator(arr, i);
- } else {
- throw new TypeError("Invalid attempt to destructure non-iterable instance");
- }
- };
- }();
- function _classCallCheck(instance, Constructor) {
- if (!(instance instanceof Constructor)) {
- throw new TypeError("Cannot call a class as a function");
- }
- }
- var _createClass = function () {
- function defineProperties(target, props) {
- for (var i = 0; i < props.length; i++) {
- var descriptor = props[i];
- descriptor.enumerable = descriptor.enumerable || false;
- descriptor.configurable = true;
- if ("value" in descriptor) descriptor.writable = true;
- Object.defineProperty(target, descriptor.key, descriptor);
- }
- }
- return function (Constructor, protoProps, staticProps) {
- if (protoProps) defineProperties(Constructor.prototype, protoProps);
- if (staticProps) defineProperties(Constructor, staticProps);
- return Constructor;
- };
- }();
- function _toConsumableArray(arr) {
- if (Array.isArray(arr)) {
- for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) {
- arr2[i] = arr[i];
- }
- return arr2;
- } else {
- return Array.from(arr);
- }
- }
- var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) {
- return typeof obj;
- } : function (obj) {
- return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj;
- };
- /**
- * @author zhixin wen <wenzhixin2010@gmail.com>
- * version: 1.13.0
- * https://github.com/wenzhixin/bootstrap-table/
- */
- (function ($) {
- // TOOLS DEFINITION
- // ======================
- var bootstrapVersion = 3;
- try {
- var rawVersion = $.fn.dropdown.Constructor.VERSION;
- // Only try to parse VERSION if is is defined.
- // It is undefined in older versions of Bootstrap (tested with 3.1.1).
- if (rawVersion !== undefined) {
- bootstrapVersion = parseInt(rawVersion, 10);
- }
- } catch (e) {}
- var bootstrap = {
- 3: {
- iconsPrefix: 'glyphicon',
- icons: {
- paginationSwitchDown: 'glyphicon-collapse-down icon-chevron-down',
- paginationSwitchUp: 'glyphicon-collapse-up icon-chevron-up',
- refresh: 'glyphicon-refresh icon-refresh',
- toggleOff: 'glyphicon-list-alt icon-list-alt',
- toggleOn: 'glyphicon-list-alt icon-list-alt',
- columns: 'glyphicon-th icon-th',
- detailOpen: 'glyphicon-plus icon-plus',
- detailClose: 'glyphicon-minus icon-minus',
- fullscreen: 'glyphicon-fullscreen'
- },
- classes: {
- buttons: 'default',
- pull: 'pull'
- },
- html: {
- toobarDropdow: ['<ul class="dropdown-menu" role="menu">', '</ul>'],
- toobarDropdowItem: '<li role="menuitem"><label>%s</label></li>',
- pageDropdown: ['<ul class="dropdown-menu" role="menu">', '</ul>'],
- pageDropdownItem: '<li role="menuitem" class="%s"><a href="#">%s</a></li>'
- }
- },
- 4: {
- iconsPrefix: 'fa',
- icons: {
- paginationSwitchDown: 'fa-caret-square-o-down',
- paginationSwitchUp: 'fa-caret-square-o-up',
- refresh: 'fa-refresh',
- toggleOff: 'fa-toggle-off',
- toggleOn: 'fa-toggle-on',
- columns: 'fa-th-list',
- detailOpen: 'fa-plus',
- detailClose: 'fa-minus',
- fullscreen: 'fa-arrows-alt'
- },
- classes: {
- buttons: 'secondary',
- pull: 'float'
- },
- html: {
- toobarDropdow: ['<div class="dropdown-menu dropdown-menu-right">', '</div>'],
- toobarDropdowItem: '<label class="dropdown-item">%s</label>',
- pageDropdown: ['<div class="dropdown-menu">', '</div>'],
- pageDropdownItem: '<a class="dropdown-item %s" href="#">%s</a>'
- }
- }
- }[bootstrapVersion];
- var Utils = {
- bootstrapVersion: bootstrapVersion,
- sprintf: function sprintf(str) {
- for (var _len = arguments.length, args = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
- args[_key - 1] = arguments[_key];
- }
- var flag = true;
- var i = 0;
- str = str.replace(/%s/g, function () {
- var arg = args[i++];
- if (typeof arg === 'undefined') {
- flag = false;
- return '';
- }
- return arg;
- });
- return flag ? str : '';
- },
- getFieldTitle: function getFieldTitle(list, value) {
- var _iteratorNormalCompletion = true;
- var _didIteratorError = false;
- var _iteratorError = undefined;
- try {
- for (var _iterator = list[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true) {
- var item = _step.value;
- if (item.field === value) {
- return item.title;
- }
- }
- } catch (err) {
- _didIteratorError = true;
- _iteratorError = err;
- } finally {
- try {
- if (!_iteratorNormalCompletion && _iterator.return) {
- _iterator.return();
- }
- } finally {
- if (_didIteratorError) {
- throw _iteratorError;
- }
- }
- }
- return '';
- },
- setFieldIndex: function setFieldIndex(columns) {
- var totalCol = 0;
- var flag = [];
- var _iteratorNormalCompletion2 = true;
- var _didIteratorError2 = false;
- var _iteratorError2 = undefined;
- try {
- for (var _iterator2 = columns[0][Symbol.iterator](), _step2; !(_iteratorNormalCompletion2 = (_step2 = _iterator2.next()).done); _iteratorNormalCompletion2 = true) {
- var column = _step2.value;
- totalCol += column.colspan || 1;
- }
- } catch (err) {
- _didIteratorError2 = true;
- _iteratorError2 = err;
- } finally {
- try {
- if (!_iteratorNormalCompletion2 && _iterator2.return) {
- _iterator2.return();
- }
- } finally {
- if (_didIteratorError2) {
- throw _iteratorError2;
- }
- }
- }
- for (var i = 0; i < columns.length; i++) {
- flag[i] = [];
- for (var j = 0; j < totalCol; j++) {
- flag[i][j] = false;
- }
- }
- for (var _i = 0; _i < columns.length; _i++) {
- for (var _j = 0; _j < columns[_i].length; _j++) {
- var r = columns[_i][_j];
- var rowspan = r.rowspan || 1;
- var colspan = r.colspan || 1;
- var index = flag[_i].indexOf(false);
- if (colspan === 1) {
- r.fieldIndex = index;
- // when field is undefined, use index instead
- if (typeof r.field === 'undefined') {
- r.field = index;
- }
- }
- for (var k = 0; k < rowspan; k++) {
- flag[_i + k][index] = true;
- }
- for (var _k = 0; _k < colspan; _k++) {
- flag[_i][index + _k] = true;
- }
- }
- }
- },
- getScrollBarWidth: function getScrollBarWidth() {
- if (this.cachedWidth === null) {
- var $inner = $('<div/>').addClass('fixed-table-scroll-inner');
- var $outer = $('<div/>').addClass('fixed-table-scroll-outer');
- var w1 = void 0;
- var w2 = void 0;
- $outer.append($inner);
- $('body').append($outer);
- w1 = $inner[0].offsetWidth;
- $outer.css('overflow', 'scroll');
- w2 = $inner[0].offsetWidth;
- if (w1 === w2) {
- w2 = $outer[0].clientWidth;
- }
- $outer.remove();
- this.cachedWidth = w1 - w2;
- }
- return this.cachedWidth;
- },
- calculateObjectValue: function calculateObjectValue(self, name, args, defaultValue) {
- var func = name;
- if (typeof name === 'string') {
- // support obj.func1.func2
- var names = name.split('.');
- if (names.length > 1) {
- func = window;
- var _iteratorNormalCompletion3 = true;
- var _didIteratorError3 = false;
- var _iteratorError3 = undefined;
- try {
- for (var _iterator3 = names[Symbol.iterator](), _step3; !(_iteratorNormalCompletion3 = (_step3 = _iterator3.next()).done); _iteratorNormalCompletion3 = true) {
- var f = _step3.value;
- func = func[f];
- }
- } catch (err) {
- _didIteratorError3 = true;
- _iteratorError3 = err;
- } finally {
- try {
- if (!_iteratorNormalCompletion3 && _iterator3.return) {
- _iterator3.return();
- }
- } finally {
- if (_didIteratorError3) {
- throw _iteratorError3;
- }
- }
- }
- } else {
- func = window[name];
- }
- }
- if (func !== null && (typeof func === 'undefined' ? 'undefined' : _typeof(func)) === 'object') {
- return func;
- }
- if (typeof func === 'function') {
- return func.apply(self, args || []);
- }
- if (!func && typeof name === 'string' && this.sprintf.apply(this, [name].concat(_toConsumableArray(args)))) {
- return this.sprintf.apply(this, [name].concat(_toConsumableArray(args)));
- }
- return defaultValue;
- },
- compareObjects: function compareObjects(objectA, objectB, compareLength) {
- var aKeys = Object.keys(objectA);
- var bKeys = Object.keys(objectB);
- if (compareLength && aKeys.length !== bKeys.length) {
- return false;
- }
- var _iteratorNormalCompletion4 = true;
- var _didIteratorError4 = false;
- var _iteratorError4 = undefined;
- try {
- for (var _iterator4 = aKeys[Symbol.iterator](), _step4; !(_iteratorNormalCompletion4 = (_step4 = _iterator4.next()).done); _iteratorNormalCompletion4 = true) {
- var key = _step4.value;
- if (bKeys.includes(key) && objectA[key] !== objectB[key]) {
- return false;
- }
- }
- } catch (err) {
- _didIteratorError4 = true;
- _iteratorError4 = err;
- } finally {
- try {
- if (!_iteratorNormalCompletion4 && _iterator4.return) {
- _iterator4.return();
- }
- } finally {
- if (_didIteratorError4) {
- throw _iteratorError4;
- }
- }
- }
- return true;
- },
- escapeHTML: function escapeHTML(text) {
- if (typeof text === 'string') {
- return text.replace(/&/g, '&').replace(/</g, '<').replace(/>/g, '>').replace(/"/g, '"').replace(/'/g, ''').replace(/`/g, '`');
- }
- return text;
- },
- getRealDataAttr: function getRealDataAttr(dataAttr) {
- for (var attr in dataAttr) {
- var auxAttr = attr.split(/(?=[A-Z])/).join('-').toLowerCase();
- if (auxAttr !== attr) {
- dataAttr[auxAttr] = dataAttr[attr];
- delete dataAttr[attr];
- }
- }
- return dataAttr;
- },
- getItemField: function getItemField(item, field, escape) {
- var value = item;
- if (typeof field !== 'string' || item.hasOwnProperty(field)) {
- return escape ? this.escapeHTML(item[field]) : item[field];
- }
- var props = field.split('.');
- var _iteratorNormalCompletion5 = true;
- var _didIteratorError5 = false;
- var _iteratorError5 = undefined;
- try {
- for (var _iterator5 = props[Symbol.iterator](), _step5; !(_iteratorNormalCompletion5 = (_step5 = _iterator5.next()).done); _iteratorNormalCompletion5 = true) {
- var p = _step5.value;
- value = value && value[p];
- }
- } catch (err) {
- _didIteratorError5 = true;
- _iteratorError5 = err;
- } finally {
- try {
- if (!_iteratorNormalCompletion5 && _iterator5.return) {
- _iterator5.return();
- }
- } finally {
- if (_didIteratorError5) {
- throw _iteratorError5;
- }
- }
- }
- return escape ? this.escapeHTML(value) : value;
- },
- isIEBrowser: function isIEBrowser() {
- return navigator.userAgent.includes('MSIE ') || /Trident.*rv:11\./.test(navigator.userAgent);
- }
- };
- // BOOTSTRAP TABLE CLASS DEFINITION
- // ======================
- var DEFAULTS = {
- classes: 'table table-hover',
- locale: undefined,
- height: undefined,
- undefinedText: '-',
- sortName: undefined,
- sortOrder: 'asc',
- sortStable: false,
- sortClass: undefined,
- rememberOrder: false,
- striped: false,
- columns: [[]],
- data: [],
- totalField: 'total',
- dataField: 'rows',
- method: 'get',
- url: undefined,
- ajax: undefined,
- cache: true,
- contentType: 'application/json',
- dataType: 'json',
- ajaxOptions: {},
- queryParams: function queryParams(params) {
- return params;
- },
- queryParamsType: 'limit', responseHandler: function responseHandler(res) {
- return res;
- },
- pagination: false,
- onlyInfoPagination: false,
- paginationLoop: true,
- sidePagination: 'client', // client or server
- totalRows: 0, // server side need to set
- pageNumber: 1,
- pageSize: 10,
- pageList: [10, 25, 50, 100],
- paginationHAlign: 'right', // right, left
- paginationVAlign: 'bottom', // bottom, top, both
- paginationDetailHAlign: 'left', // right, left
- paginationPreText: '‹',
- paginationNextText: '›',
- search: false,
- searchOnEnterKey: false,
- strictSearch: false,
- searchAlign: 'right',
- selectItemName: 'btSelectItem',
- showHeader: true,
- showFooter: false,
- showColumns: false,
- showPaginationSwitch: false,
- showRefresh: false,
- showToggle: false,
- showFullscreen: false,
- smartDisplay: true,
- escape: false,
- minimumCountColumns: 1,
- idField: undefined,
- uniqueId: undefined,
- cardView: false,
- detailView: false,
- detailFormatter: function detailFormatter(index, row) {
- return '';
- },
- detailFilter: function detailFilter(index, row) {
- return true;
- },
- trimOnSearch: true,
- clickToSelect: false,
- singleSelect: false,
- toolbar: undefined,
- toolbarAlign: 'left',
- buttonsToolbar: undefined,
- buttonsAlign: 'right',
- checkboxHeader: true,
- sortable: true,
- silentSort: true,
- maintainSelected: false,
- searchTimeOut: 500,
- searchText: '',
- iconSize: undefined,
- buttonsClass: bootstrap.classes.buttons,
- iconsPrefix: bootstrap.iconsPrefix, // glyphicon or fa(font-awesome)
- icons: bootstrap.icons,
- customSearch: $.noop,
- customSort: $.noop,
- ignoreClickToSelectOn: function ignoreClickToSelectOn(element) {
- return ['A', 'BUTTON'].includes(element.tagName);
- },
- rowStyle: function rowStyle(row, index) {
- return {};
- },
- rowAttributes: function rowAttributes(row, index) {
- return {};
- },
- footerStyle: function footerStyle(row, index) {
- return {};
- },
- onAll: function onAll(name, args) {
- return false;
- },
- onClickCell: function onClickCell(field, value, row, $element) {
- return false;
- },
- onDblClickCell: function onDblClickCell(field, value, row, $element) {
- return false;
- },
- onClickRow: function onClickRow(item, $element) {
- return false;
- },
- onDblClickRow: function onDblClickRow(item, $element) {
- return false;
- },
- onSort: function onSort(name, order) {
- return false;
- },
- onCheck: function onCheck(row) {
- return false;
- },
- onUncheck: function onUncheck(row) {
- return false;
- },
- onCheckAll: function onCheckAll(rows) {
- return false;
- },
- onUncheckAll: function onUncheckAll(rows) {
- return false;
- },
- onCheckSome: function onCheckSome(rows) {
- return false;
- },
- onUncheckSome: function onUncheckSome(rows) {
- return false;
- },
- onLoadSuccess: function onLoadSuccess(data) {
- return false;
- },
- onLoadError: function onLoadError(status) {
- return false;
- },
- onColumnSwitch: function onColumnSwitch(field, checked) {
- return false;
- },
- onPageChange: function onPageChange(number, size) {
- return false;
- },
- onSearch: function onSearch(text) {
- return false;
- },
- onToggle: function onToggle(cardView) {
- return false;
- },
- onPreBody: function onPreBody(data) {
- return false;
- },
- onPostBody: function onPostBody() {
- return false;
- },
- onPostHeader: function onPostHeader() {
- return false;
- },
- onExpandRow: function onExpandRow(index, row, $detail) {
- return false;
- },
- onCollapseRow: function onCollapseRow(index, row) {
- return false;
- },
- onRefreshOptions: function onRefreshOptions(options) {
- return false;
- },
- onRefresh: function onRefresh(params) {
- return false;
- },
- onResetView: function onResetView() {
- return false;
- },
- onScrollBody: function onScrollBody() {
- return false;
- }
- };
- var LOCALES = {};
- LOCALES['en-US'] = LOCALES.en = {
- formatLoadingMessage: function formatLoadingMessage() {
- return 'Loading, please wait...';
- },
- formatRecordsPerPage: function formatRecordsPerPage(pageNumber) {
- return Utils.sprintf('%s rows per page', pageNumber);
- },
- formatShowingRows: function formatShowingRows(pageFrom, pageTo, totalRows) {
- return Utils.sprintf('Showing %s to %s of %s rows', pageFrom, pageTo, totalRows);
- },
- formatDetailPagination: function formatDetailPagination(totalRows) {
- return Utils.sprintf('Showing %s rows', totalRows);
- },
- formatSearch: function formatSearch() {
- return 'Search';
- },
- formatNoMatches: function formatNoMatches() {
- return 'No matching records found';
- },
- formatPaginationSwitch: function formatPaginationSwitch() {
- return 'Hide/Show pagination';
- },
- formatRefresh: function formatRefresh() {
- return 'Refresh';
- },
- formatToggle: function formatToggle() {
- return 'Toggle';
- },
- formatFullscreen: function formatFullscreen() {
- return 'Fullscreen';
- },
- formatColumns: function formatColumns() {
- return 'Columns';
- },
- formatAllRows: function formatAllRows() {
- return 'All';
- }
- };
- $.extend(DEFAULTS, LOCALES['en-US']);
- var COLUMN_DEFAULTS = {
- radio: false,
- checkbox: false,
- checkboxEnabled: true,
- field: undefined,
- title: undefined,
- titleTooltip: undefined,
- 'class': undefined,
- align: undefined, // left, right, center
- halign: undefined, // left, right, center
- falign: undefined, // left, right, center
- valign: undefined, // top, middle, bottom
- width: undefined,
- sortable: false,
- order: 'asc', // asc, desc
- visible: true,
- switchable: true,
- clickToSelect: true,
- formatter: undefined,
- footerFormatter: undefined,
- events: undefined,
- sorter: undefined,
- sortName: undefined,
- cellStyle: undefined,
- searchable: true,
- searchFormatter: true,
- cardVisible: true,
- escape: false,
- showSelectTitle: false
- };
- var EVENTS = {
- 'all.bs.table': 'onAll',
- 'click-cell.bs.table': 'onClickCell',
- 'dbl-click-cell.bs.table': 'onDblClickCell',
- 'click-row.bs.table': 'onClickRow',
- 'dbl-click-row.bs.table': 'onDblClickRow',
- 'sort.bs.table': 'onSort',
- 'check.bs.table': 'onCheck',
- 'uncheck.bs.table': 'onUncheck',
- 'check-all.bs.table': 'onCheckAll',
- 'uncheck-all.bs.table': 'onUncheckAll',
- 'check-some.bs.table': 'onCheckSome',
- 'uncheck-some.bs.table': 'onUncheckSome',
- 'load-success.bs.table': 'onLoadSuccess',
- 'load-error.bs.table': 'onLoadError',
- 'column-switch.bs.table': 'onColumnSwitch',
- 'page-change.bs.table': 'onPageChange',
- 'search.bs.table': 'onSearch',
- 'toggle.bs.table': 'onToggle',
- 'pre-body.bs.table': 'onPreBody',
- 'post-body.bs.table': 'onPostBody',
- 'post-header.bs.table': 'onPostHeader',
- 'expand-row.bs.table': 'onExpandRow',
- 'collapse-row.bs.table': 'onCollapseRow',
- 'refresh-options.bs.table': 'onRefreshOptions',
- 'reset-view.bs.table': 'onResetView',
- 'refresh.bs.table': 'onRefresh',
- 'scroll-body.bs.table': 'onScrollBody'
- };
- var BootstrapTable = function () {
- function BootstrapTable(el, options) {
- _classCallCheck(this, BootstrapTable);
- this.options = options;
- this.$el = $(el);
- this.$el_ = this.$el.clone();
- this.timeoutId_ = 0;
- this.timeoutFooter_ = 0;
- this.init();
- }
- _createClass(BootstrapTable, [{
- key: 'init',
- value: function init() {
- this.initLocale();
- this.initContainer();
- this.initTable();
- this.initHeader();
- this.initData();
- this.initHiddenRows();
- this.initFooter();
- this.initToolbar();
- this.initPagination();
- this.initBody();
- this.initSearchText();
- this.initServer();
- }
- }, {
- key: 'initLocale',
- value: function initLocale() {
- if (this.options.locale) {
- var locales = $.fn.bootstrapTable.locales;
- var parts = this.options.locale.split(/-|_/);
- parts[0].toLowerCase();
- if (parts[1]) {
- parts[1].toUpperCase();
- }
- if (locales[this.options.locale]) {
- // locale as requested
- $.extend(this.options, locales[this.options.locale]);
- } else if ($.fn.bootstrapTable.locales[parts.join('-')]) {
- // locale with sep set to - (in case original was specified with _)
- $.extend(this.options, locales[parts.join('-')]);
- } else if ($.fn.bootstrapTable.locales[parts[0]]) {
- // short locale language code (i.e. 'en')
- $.extend(this.options, locales[parts[0]]);
- }
- }
- }
- }, {
- key: 'initContainer',
- value: function initContainer() {
- var topPagination = ['top', 'both'].includes(this.options.paginationVAlign) ? '<div class="fixed-table-pagination clearfix"></div>' : '';
- var bottomPagination = ['bottom', 'both'].includes(this.options.paginationVAlign) ? '<div class="fixed-table-pagination"></div>' : '';
- this.$container = $('\n <div class="bootstrap-table">\n <div class="fixed-table-toolbar"></div>\n ' + topPagination + '\n <div class="fixed-table-container">\n <div class="fixed-table-header"><table></table></div>\n <div class="fixed-table-body">\n <div class="fixed-table-loading">\n ' + this.options.formatLoadingMessage() + '\n </div>\n </div>\n <div class="fixed-table-footer"><table><tr></tr></table></div>\n </div>\n ' + bottomPagination + '\n </div>\n ');
- this.$container.insertAfter(this.$el);
- this.$tableContainer = this.$container.find('.fixed-table-container');
- this.$tableHeader = this.$container.find('.fixed-table-header');
- this.$tableBody = this.$container.find('.fixed-table-body');
- this.$tableLoading = this.$container.find('.fixed-table-loading');
- this.$tableFooter = this.$container.find('.fixed-table-footer');
- // checking if custom table-toolbar exists or not
- if (this.options.buttonsToolbar) {
- this.$toolbar = $('body').find(this.options.buttonsToolbar);
- } else {
- this.$toolbar = this.$container.find('.fixed-table-toolbar');
- }
- this.$pagination = this.$container.find('.fixed-table-pagination');
- this.$tableBody.append(this.$el);
- this.$container.after('<div class="clearfix"></div>');
- this.$el.addClass(this.options.classes);
- if (this.options.striped) {
- this.$el.addClass('table-striped');
- }
- if (this.options.classes.split(' ').includes('table-no-bordered')) {
- this.$tableContainer.addClass('table-no-bordered');
- }
- }
- }, {
- key: 'initTable',
- value: function initTable() {
- var _this = this;
- var columns = [];
- var data = [];
- this.$header = this.$el.find('>thead');
- if (!this.$header.length) {
- this.$header = $('<thead></thead>').appendTo(this.$el);
- }
- this.$header.find('tr').each(function (i, el) {
- var column = [];
- $(el).find('th').each(function (i, el) {
- // #2014: getFieldIndex and elsewhere assume this is string, causes issues if not
- if (typeof $(el).data('field') !== 'undefined') {
- $(el).data('field', '' + $(el).data('field'));
- }
- column.push($.extend({}, {
- title: $(el).html(),
- 'class': $(el).attr('class'),
- titleTooltip: $(el).attr('title'),
- rowspan: $(el).attr('rowspan') ? +$(el).attr('rowspan') : undefined,
- colspan: $(el).attr('colspan') ? +$(el).attr('colspan') : undefined
- }, $(el).data()));
- });
- columns.push(column);
- });
- if (!Array.isArray(this.options.columns[0])) {
- this.options.columns = [this.options.columns];
- }
- this.options.columns = $.extend(true, [], columns, this.options.columns);
- this.columns = [];
- this.fieldsColumnsIndex = [];
- Utils.setFieldIndex(this.options.columns);
- this.options.columns.forEach(function (columns, i) {
- columns.forEach(function (column, j) {
- column = $.extend({}, BootstrapTable.COLUMN_DEFAULTS, column);
- if (typeof column.fieldIndex !== 'undefined') {
- _this.columns[column.fieldIndex] = column;
- _this.fieldsColumnsIndex[column.field] = column.fieldIndex;
- }
- _this.options.columns[i][j] = column;
- });
- });
- // if options.data is setting, do not process tbody data
- if (this.options.data.length) {
- return;
- }
- var m = [];
- this.$el.find('>tbody>tr').each(function (y, el) {
- var row = {};
- // save tr's id, class and data-* attributes
- row._id = $(el).attr('id');
- row._class = $(el).attr('class');
- row._data = Utils.getRealDataAttr($(el).data());
- $(el).find('>td').each(function (x, el) {
- var cspan = +$(el).attr('colspan') || 1;
- var rspan = +$(el).attr('rowspan') || 1;
- // skip already occupied cells in current row
- for (; m[y] && m[y][x]; x++) {}
- // mark matrix elements occupied by current cell with true
- for (var tx = x; tx < x + cspan; tx++) {
- for (var ty = y; ty < y + rspan; ty++) {
- if (!m[ty]) {
- // fill missing rows
- m[ty] = [];
- }
- m[ty][tx] = true;
- }
- }
- var field = _this.columns[x].field;
- row[field] = $(el).html();
- // save td's id, class and data-* attributes
- row['_' + field + '_id'] = $(el).attr('id');
- row['_' + field + '_class'] = $(el).attr('class');
- row['_' + field + '_rowspan'] = $(el).attr('rowspan');
- row['_' + field + '_colspan'] = $(el).attr('colspan');
- row['_' + field + '_title'] = $(el).attr('title');
- row['_' + field + '_data'] = Utils.getRealDataAttr($(el).data());
- });
- data.push(row);
- });
- this.options.data = data;
- if (data.length) {
- this.fromHtml = true;
- }
- }
- }, {
- key: 'initHeader',
- value: function initHeader() {
- var _this2 = this;
- var visibleColumns = {};
- var html = [];
- this.header = {
- fields: [],
- styles: [],
- classes: [],
- formatters: [],
- events: [],
- sorters: [],
- sortNames: [],
- cellStyles: [],
- searchables: []
- };
- this.options.columns.forEach(function (columns, i) {
- html.push('<tr>');
- if (i === 0 && !_this2.options.cardView && _this2.options.detailView) {
- html.push('<th class="detail" rowspan="' + _this2.options.columns.length + '">\n <div class="fht-cell"></div>\n </th>\n ');
- }
- columns.forEach(function (column, j) {
- var text = '';
- var halign = ''; // header align style
- var align = ''; // body align style
- var style = '';
- var class_ = Utils.sprintf(' class="%s"', column['class']);
- var unitWidth = 'px';
- var width = column.width;
- if (column.width !== undefined && !_this2.options.cardView) {
- if (typeof column.width === 'string') {
- if (column.width.includes('%')) {
- unitWidth = '%';
- }
- }
- }
- if (column.width && typeof column.width === 'string') {
- width = column.width.replace('%', '').replace('px', '');
- }
- halign = Utils.sprintf('text-align: %s; ', column.halign ? column.halign : column.align);
- align = Utils.sprintf('text-align: %s; ', column.align);
- style = Utils.sprintf('vertical-align: %s; ', column.valign);
- style += Utils.sprintf('width: %s; ', (column.checkbox || column.radio) && !width ? !column.showSelectTitle ? '36px' : undefined : width ? width + unitWidth : undefined);
- if (typeof column.fieldIndex !== 'undefined') {
- _this2.header.fields[column.fieldIndex] = column.field;
- _this2.header.styles[column.fieldIndex] = align + style;
- _this2.header.classes[column.fieldIndex] = class_;
- _this2.header.formatters[column.fieldIndex] = column.formatter;
- _this2.header.events[column.fieldIndex] = column.events;
- _this2.header.sorters[column.fieldIndex] = column.sorter;
- _this2.header.sortNames[column.fieldIndex] = column.sortName;
- _this2.header.cellStyles[column.fieldIndex] = column.cellStyle;
- _this2.header.searchables[column.fieldIndex] = column.searchable;
- if (!column.visible) {
- return;
- }
- if (_this2.options.cardView && !column.cardVisible) {
- return;
- }
- visibleColumns[column.field] = column;
- }
- html.push('<th' + Utils.sprintf(' title="%s"', column.titleTooltip), column.checkbox || column.radio ? Utils.sprintf(' class="bs-checkbox %s"', column['class'] || '') : class_, Utils.sprintf(' style="%s"', halign + style), Utils.sprintf(' rowspan="%s"', column.rowspan), Utils.sprintf(' colspan="%s"', column.colspan), Utils.sprintf(' data-field="%s"', column.field),
- // If `column` is not the first element of `this.options.columns[0]`, then className 'data-not-first-th' should be added.
- j === 0 && i > 0 ? ' data-not-first-th' : '', '>');
- html.push(Utils.sprintf('<div class="th-inner %s">', _this2.options.sortable && column.sortable ? 'sortable both' : ''));
- text = _this2.options.escape ? Utils.escapeHTML(column.title) : column.title;
- var title = text;
- if (column.checkbox) {
- text = '';
- if (!_this2.options.singleSelect && _this2.options.checkboxHeader) {
- text = '<input name="btSelectAll" type="checkbox" />';
- }
- _this2.header.stateField = column.field;
- }
- if (column.radio) {
- text = '';
- _this2.header.stateField = column.field;
- _this2.options.singleSelect = true;
- }
- if (!text && column.showSelectTitle) {
- text += title;
- }
- html.push(text);
- html.push('</div>');
- html.push('<div class="fht-cell"></div>');
- html.push('</div>');
- html.push('</th>');
- });
- html.push('</tr>');
- });
- this.$header.html(html.join(''));
- this.$header.find('th[data-field]').each(function (i, el) {
- $(el).data(visibleColumns[$(el).data('field')]);
- });
- this.$container.off('click', '.th-inner').on('click', '.th-inner', function (e) {
- var $this = $(e.currentTarget);
- if (_this2.options.detailView && !$this.parent().hasClass('bs-checkbox')) {
- if ($this.closest('.bootstrap-table')[0] !== _this2.$container[0]) {
- return false;
- }
- }
- if (_this2.options.sortable && $this.parent().data().sortable) {
- _this2.onSort(e);
- }
- });
- this.$header.children().children().off('keypress').on('keypress', function (e) {
- if (_this2.options.sortable && $(e.currentTarget).data().sortable) {
- var code = e.keyCode || e.which;
- if (code === 13) {
- // Enter keycode
- _this2.onSort(e);
- }
- }
- });
- $(window).off('resize.bootstrap-table');
- if (!this.options.showHeader || this.options.cardView) {
- this.$header.hide();
- this.$tableHeader.hide();
- this.$tableLoading.css('top', 0);
- } else {
- this.$header.show();
- this.$tableHeader.show();
- this.$tableLoading.css('top', this.$header.outerHeight() + 1);
- // Assign the correct sortable arrow
- this.getCaret();
- $(window).on('resize.bootstrap-table', $.proxy(this.resetWidth, this));
- }
- this.$selectAll = this.$header.find('[name="btSelectAll"]');
- this.$selectAll.off('click').on('click', function (e) {
- var checked = $(e.currentTarget).prop('checked');
- _this2[checked ? 'checkAll' : 'uncheckAll']();
- _this2.updateSelected();
- });
- }
- }, {
- key: 'initFooter',
- value: function initFooter() {
- if (!this.options.showFooter || this.options.cardView) {
- this.$tableFooter.hide();
- } else {
- this.$tableFooter.show();
- }
- }
- }, {
- key: 'initData',
- value: function initData(data, type) {
- if (type === 'append') {
- this.options.data = this.options.data.concat(data);
- } else if (type === 'prepend') {
- this.options.data = [].concat(data).concat(this.options.data);
- } else {
- this.options.data = data || this.options.data;
- }
- this.data = this.options.data;
- if (this.options.sidePagination === 'server') {
- return;
- }
- this.initSort();
- }
- }, {
- key: 'initSort',
- value: function initSort() {
- var _this3 = this;
- var name = this.options.sortName;
- var order = this.options.sortOrder === 'desc' ? -1 : 1;
- var index = this.header.fields.indexOf(this.options.sortName);
- var timeoutId = 0;
- if (this.options.customSort !== $.noop) {
- this.options.customSort.apply(this, [this.options.sortName, this.options.sortOrder]);
- return;
- }
- if (index !== -1) {
- if (this.options.sortStable) {
- this.data.forEach(function (row, i) {
- row._position = i;
- });
- }
- this.data.sort(function (a, b) {
- if (_this3.header.sortNames[index]) {
- name = _this3.header.sortNames[index];
- }
- var aa = Utils.getItemField(a, name, _this3.options.escape);
- var bb = Utils.getItemField(b, name, _this3.options.escape);
- var value = Utils.calculateObjectValue(_this3.header, _this3.header.sorters[index], [aa, bb, a, b]);
- if (value !== undefined) {
- if (_this3.options.sortStable && value === 0) {
- return a._position - b._position;
- }
- return order * value;
- }
- // Fix #161: undefined or null string sort bug.
- if (aa === undefined || aa === null) {
- aa = '';
- }
- if (bb === undefined || bb === null) {
- bb = '';
- }
- if (_this3.options.sortStable && aa === bb) {
- aa = a._position;
- bb = b._position;
- return a._position - b._position;
- }
- // IF both values are numeric, do a numeric comparison
- if ($.isNumeric(aa) && $.isNumeric(bb)) {
- // Convert numerical values form string to float.
- aa = parseFloat(aa);
- bb = parseFloat(bb);
- if (aa < bb) {
- return order * -1;
- }
- return order;
- }
- if (aa === bb) {
- return 0;
- }
- // If value is not a string, convert to string
- if (typeof aa !== 'string') {
- aa = aa.toString();
- }
- if (aa.localeCompare(bb) === -1) {
- return order * -1;
- }
- return order;
- });
- if (this.options.sortClass !== undefined) {
- clearTimeout(timeoutId);
- timeoutId = setTimeout(function () {
- _this3.$el.removeClass(_this3.options.sortClass);
- var index = _this3.$header.find(Utils.sprintf('[data-field="%s"]', _this3.options.sortName).index() + 1);
- _this3.$el.find(Utils.sprintf('tr td:nth-child(%s)', index)).addClass(_this3.options.sortClass);
- }, 250);
- }
- }
- }
- }, {
- key: 'onSort',
- value: function onSort(_ref) {
- var type = _ref.type,
- currentTarget = _ref.currentTarget;
- var $this = type === 'keypress' ? $(currentTarget) : $(currentTarget).parent();
- var $this_ = this.$header.find('th').eq($this.index());
- this.$header.add(this.$header_).find('span.order').remove();
- if (this.options.sortName === $this.data('field')) {
- this.options.sortOrder = this.options.sortOrder === 'asc' ? 'desc' : 'asc';
- } else {
- this.options.sortName = $this.data('field');
- if (this.options.rememberOrder) {
- this.options.sortOrder = $this.data('order') === 'asc' ? 'desc' : 'asc';
- } else {
- this.options.sortOrder = this.columns[this.fieldsColumnsIndex[$this.data('field')]].order;
- }
- }
- this.trigger('sort', this.options.sortName, this.options.sortOrder);
- $this.add($this_).data('order', this.options.sortOrder);
- // Assign the correct sortable arrow
- this.getCaret();
- if (this.options.sidePagination === 'server') {
- this.initServer(this.options.silentSort);
- return;
- }
- this.initSort();
- this.initBody();
- }
- }, {
- key: 'initToolbar',
- value: function initToolbar() {
- var _this4 = this;
- var html = [];
- var timeoutId = 0;
- var $keepOpen = void 0;
- var $search = void 0;
- var switchableCount = 0;
- if (this.$toolbar.find('.bs-bars').children().length) {
- $('body').append($(this.options.toolbar));
- }
- this.$toolbar.html('');
- if (typeof this.options.toolbar === 'string' || _typeof(this.options.toolbar) === 'object') {
- $(Utils.sprintf('<div class="bs-bars %s-%s"></div>', bootstrap.classes.pull, this.options.toolbarAlign)).appendTo(this.$toolbar).append($(this.options.toolbar));
- }
- // showColumns, showToggle, showRefresh
- html = [Utils.sprintf('<div class="columns columns-%s btn-group %s-%s">', this.options.buttonsAlign, bootstrap.classes.pull, this.options.buttonsAlign)];
- if (typeof this.options.icons === 'string') {
- this.options.icons = Utils.calculateObjectValue(null, this.options.icons);
- }
- if (this.options.showPaginationSwitch) {
- html.push(Utils.sprintf('<button class="btn' + Utils.sprintf(' btn-%s', this.options.buttonsClass) + Utils.sprintf(' btn-%s', this.options.iconSize) + '" type="button" name="paginationSwitch" aria-label="pagination Switch" title="%s">', this.options.formatPaginationSwitch()), Utils.sprintf('<i class="%s %s"></i>', this.options.iconsPrefix, this.options.icons.paginationSwitchDown), '</button>');
- }
- if (this.options.showFullscreen) {
- this.$toolbar.find('button[name="fullscreen"]').off('click').on('click', $.proxy(this.toggleFullscreen, this));
- }
- if (this.options.showRefresh) {
- html.push(Utils.sprintf('<button class="btn' + Utils.sprintf(' btn-%s', this.options.buttonsClass) + Utils.sprintf(' btn-%s', this.options.iconSize) + '" type="button" name="refresh" aria-label="refresh" title="%s">', this.options.formatRefresh()), Utils.sprintf('<i class="%s %s"></i>', this.options.iconsPrefix, this.options.icons.refresh), '</button>');
- }
- if (this.options.showToggle) {
- html.push(Utils.sprintf('<button class="btn' + Utils.sprintf(' btn-%s', this.options.buttonsClass) + Utils.sprintf(' btn-%s', this.options.iconSize) + '" type="button" name="toggle" aria-label="toggle" title="%s">', this.options.formatToggle()), Utils.sprintf('<i class="%s %s"></i>', this.options.iconsPrefix, this.options.icons.toggleOff), '</button>');
- }
- if (this.options.showFullscreen) {
- html.push(Utils.sprintf('<button class="btn' + Utils.sprintf(' btn-%s', this.options.buttonsClass) + Utils.sprintf(' btn-%s', this.options.iconSize) + '" type="button" name="fullscreen" aria-label="fullscreen" title="%s">', this.options.formatFullscreen()), Utils.sprintf('<i class="%s %s"></i>', this.options.iconsPrefix, this.options.icons.fullscreen), '</button>');
- }
- if (this.options.showColumns) {
- html.push(Utils.sprintf('<div class="keep-open btn-group" title="%s">', this.options.formatColumns()), '<button type="button" aria-label="columns" class="btn' + Utils.sprintf(' btn-%s', this.options.buttonsClass) + Utils.sprintf(' btn-%s', this.options.iconSize) + ' dropdown-toggle" data-toggle="dropdown">', Utils.sprintf('<i class="%s %s"></i>', this.options.iconsPrefix, this.options.icons.columns), ' <span class="caret"></span>', '</button>', bootstrap.html.toobarDropdow[0]);
- this.columns.forEach(function (column, i) {
- if (column.radio || column.checkbox) {
- return;
- }
- if (_this4.options.cardView && !column.cardVisible) {
- return;
- }
- var checked = column.visible ? ' checked="checked"' : '';
- if (column.switchable) {
- html.push(Utils.sprintf(bootstrap.html.toobarDropdowItem, Utils.sprintf('<input type="checkbox" data-field="%s" value="%s"%s> %s', column.field, i, checked, column.title)));
- switchableCount++;
- }
- });
- html.push(bootstrap.html.toobarDropdow[1], '</div>');
- }
- html.push('</div>');
- // Fix #188: this.showToolbar is for extensions
- if (this.showToolbar || html.length > 2) {
- this.$toolbar.append(html.join(''));
- }
- if (this.options.showPaginationSwitch) {
- this.$toolbar.find('button[name="paginationSwitch"]').off('click').on('click', $.proxy(this.togglePagination, this));
- }
- if (this.options.showRefresh) {
- this.$toolbar.find('button[name="refresh"]').off('click').on('click', $.proxy(this.refresh, this));
- }
- if (this.options.showToggle) {
- this.$toolbar.find('button[name="toggle"]').off('click').on('click', function () {
- _this4.toggleView();
- });
- }
- if (this.options.showColumns) {
- $keepOpen = this.$toolbar.find('.keep-open');
- if (switchableCount <= this.options.minimumCountColumns) {
- $keepOpen.find('input').prop('disabled', true);
- }
- $keepOpen.find('li').off('click').on('click', function (e) {
- e.stopImmediatePropagation();
- });
- $keepOpen.find('input').off('click').on('click', function (e) {
- var $this = $(e.currentTarget);
- _this4.toggleColumn($this.val(), $this.prop('checked'), false);
- _this4.trigger('column-switch', $this.data('field'), $this.prop('checked'));
- });
- }
- if (this.options.search) {
- html = [];
- html.push(Utils.sprintf('<div class="%s-%s search">', bootstrap.classes.pull, this.options.searchAlign), Utils.sprintf('<input class="form-control' + Utils.sprintf(' input-%s', this.options.iconSize) + '" type="text" placeholder="%s">', this.options.formatSearch()), '</div>');
- this.$toolbar.append(html.join(''));
- $search = this.$toolbar.find('.search input');
- $search.off('keyup drop blur').on('keyup drop blur', function (event) {
- if (_this4.options.searchOnEnterKey && event.keyCode !== 13) {
- return;
- }
- if ([37, 38, 39, 40].includes(event.keyCode)) {
- return;
- }
- clearTimeout(timeoutId); // doesn't matter if it's 0
- timeoutId = setTimeout(function () {
- _this4.onSearch(event);
- }, _this4.options.searchTimeOut);
- });
- if (Utils.isIEBrowser()) {
- $search.off('mouseup').on('mouseup', function (event) {
- clearTimeout(timeoutId); // doesn't matter if it's 0
- timeoutId = setTimeout(function () {
- _this4.onSearch(event);
- }, _this4.options.searchTimeOut);
- });
- }
- }
- }
- }, {
- key: 'onSearch',
- value: function onSearch(_ref2) {
- var currentTarget = _ref2.currentTarget,
- firedByInitSearchText = _ref2.firedByInitSearchText;
- var text = $.trim($(currentTarget).val());
- // trim search input
- if (this.options.trimOnSearch && $(currentTarget).val() !== text) {
- $(currentTarget).val(text);
- }
- if (text === this.searchText) {
- return;
- }
- this.searchText = text;
- this.options.searchText = text;
- if (!firedByInitSearchText) {
- this.options.pageNumber = 1;
- }
- this.initSearch();
- if (firedByInitSearchText) {
- if (this.options.sidePagination === 'client') {
- this.updatePagination();
- }
- } else {
- this.updatePagination();
- }
- this.trigger('search', text);
- }
- }, {
- key: 'initSearch',
- value: function initSearch() {
- var _this5 = this;
- if (this.options.sidePagination !== 'server') {
- if (this.options.customSearch !== $.noop) {
- Utils.calculateObjectValue(this.options, this.options.customSearch, [this.searchText]);
- return;
- }
- var s = this.searchText && (this.options.escape ? Utils.escapeHTML(this.searchText) : this.searchText).toLowerCase();
- var f = $.isEmptyObject(this.filterColumns) ? null : this.filterColumns;
- // Check filter
- this.data = f ? this.options.data.filter(function (item, i) {
- for (var key in f) {
- if (Array.isArray(f[key]) && !f[key].includes(item[key]) || !Array.isArray(f[key]) && item[key] !== f[key]) {
- return false;
- }
- }
- return true;
- }) : this.options.data;
- this.data = s ? this.data.filter(function (item, i) {
- for (var j = 0; j < _this5.header.fields.length; j++) {
- if (!_this5.header.searchables[j]) {
- continue;
- }
- var key = $.isNumeric(_this5.header.fields[j]) ? parseInt(_this5.header.fields[j], 10) : _this5.header.fields[j];
- var column = _this5.columns[_this5.fieldsColumnsIndex[key]];
- var value = void 0;
- if (typeof key === 'string') {
- value = item;
- var props = key.split('.');
- for (var _i2 = 0; _i2 < props.length; _i2++) {
- if (value[props[_i2]] != null) {
- value = value[props[_i2]];
- }
- }
- } else {
- value = item[key];
- }
- // Fix #142: respect searchForamtter boolean
- if (column && column.searchFormatter) {
- value = Utils.calculateObjectValue(column, _this5.header.formatters[j], [value, item, i], value);
- }
- if (typeof value === 'string' || typeof value === 'number') {
- if (_this5.options.strictSearch) {
- if (('' + value).toLowerCase() === s) {
- return true;
- }
- } else {
- if (('' + value).toLowerCase().includes(s)) {
- return true;
- }
- }
- }
- }
- return false;
- }) : this.data;
- }
- }
- }, {
- key: 'initPagination',
- value: function initPagination() {
- var _this6 = this;
- if (!this.options.pagination) {
- this.$pagination.hide();
- return;
- } else {
- this.$pagination.show();
- }
- var html = [];
- var $allSelected = false;
- var i = void 0;
- var from = void 0;
- var to = void 0;
- var $pageList = void 0;
- var $pre = void 0;
- var $next = void 0;
- var $number = void 0;
- var data = this.getData();
- var pageList = this.options.pageList;
- if (this.options.sidePagination !== 'server') {
- this.options.totalRows = data.length;
- }
- this.totalPages = 0;
- if (this.options.totalRows) {
- if (this.options.pageSize === this.options.formatAllRows()) {
- this.options.pageSize = this.options.totalRows;
- $allSelected = true;
- } else if (this.options.pageSize === this.options.totalRows) {
- // Fix #667 Table with pagination,
- // multiple pages and a search this matches to one page throws exception
- var pageLst = typeof this.options.pageList === 'string' ? this.options.pageList.replace('[', '').replace(']', '').replace(/ /g, '').toLowerCase().split(',') : this.options.pageList;
- if (pageLst.includes(this.options.formatAllRows().toLowerCase())) {
- $allSelected = true;
- }
- }
- this.totalPages = ~~((this.options.totalRows - 1) / this.options.pageSize) + 1;
- this.options.totalPages = this.totalPages;
- }
- if (this.totalPages > 0 && this.options.pageNumber > this.totalPages) {
- this.options.pageNumber = this.totalPages;
- }
- this.pageFrom = (this.options.pageNumber - 1) * this.options.pageSize + 1;
- this.pageTo = this.options.pageNumber * this.options.pageSize;
- if (this.pageTo > this.options.totalRows) {
- this.pageTo = this.options.totalRows;
- }
- html.push(Utils.sprintf('<div class="%s-%s pagination-detail">', bootstrap.classes.pull, this.options.paginationDetailHAlign), '<span class="pagination-info">', this.options.onlyInfoPagination ? this.options.formatDetailPagination(this.options.totalRows) : this.options.formatShowingRows(this.pageFrom, this.pageTo, this.options.totalRows), '</span>');
- if (!this.options.onlyInfoPagination) {
- html.push('<span class="page-list">');
- var pageNumber = [Utils.sprintf('<span class="btn-group %s">', this.options.paginationVAlign === 'top' || this.options.paginationVAlign === 'both' ? 'dropdown' : 'dropup'), '<button type="button" class="btn' + Utils.sprintf(' btn-%s', this.options.buttonsClass) + Utils.sprintf(' btn-%s', this.options.iconSize) + ' dropdown-toggle" data-toggle="dropdown">', '<span class="page-size">', $allSelected ? this.options.formatAllRows() : this.options.pageSize, '</span>', ' <span class="caret"></span>', '</button>', bootstrap.html.pageDropdown[0]];
- if (typeof this.options.pageList === 'string') {
- var list = this.options.pageList.replace('[', '').replace(']', '').replace(/ /g, '').split(',');
- pageList = [];
- var _iteratorNormalCompletion6 = true;
- var _didIteratorError6 = false;
- var _iteratorError6 = undefined;
- try {
- for (var _iterator6 = list[Symbol.iterator](), _step6; !(_iteratorNormalCompletion6 = (_step6 = _iterator6.next()).done); _iteratorNormalCompletion6 = true) {
- var value = _step6.value;
- pageList.push(value.toUpperCase() === this.options.formatAllRows().toUpperCase() || value.toUpperCase() === 'UNLIMITED' ? this.options.formatAllRows() : +value);
- }
- } catch (err) {
- _didIteratorError6 = true;
- _iteratorError6 = err;
- } finally {
- try {
- if (!_iteratorNormalCompletion6 && _iterator6.return) {
- _iterator6.return();
- }
- } finally {
- if (_didIteratorError6) {
- throw _iteratorError6;
- }
- }
- }
- }
- pageList.forEach(function (page, i) {
- if (!_this6.options.smartDisplay || i === 0 || pageList[i - 1] < _this6.options.totalRows) {
- var active = void 0;
- if ($allSelected) {
- active = page === _this6.options.formatAllRows() ? 'active' : '';
- } else {
- active = page === _this6.options.pageSize ? 'active' : '';
- }
- pageNumber.push(Utils.sprintf(bootstrap.html.pageDropdownItem, active, page));
- }
- });
- pageNumber.push(bootstrap.html.pageDropdown[1] + '</span>');
- html.push(this.options.formatRecordsPerPage(pageNumber.join('')));
- html.push('</span>');
- html.push('</div>', Utils.sprintf('<div class="%s-%s pagination">', bootstrap.classes.pull, this.options.paginationHAlign), '<ul class="pagination' + Utils.sprintf(' pagination-%s', this.options.iconSize) + '">', Utils.sprintf('<li class="page-item page-pre"><a class="page-link" href="#">%s</a></li>', this.options.paginationPreText));
- if (this.totalPages < 5) {
- from = 1;
- to = this.totalPages;
- } else {
- from = this.options.pageNumber - 2;
- to = from + 4;
- if (from < 1) {
- from = 1;
- to = 5;
- }
- if (to > this.totalPages) {
- to = this.totalPages;
- from = to - 4;
- }
- }
- if (this.totalPages >= 6) {
- if (this.options.pageNumber >= 3) {
- html.push(Utils.sprintf('<li class="page-item page-first%s">', this.options.pageNumber === 1 ? ' active' : ''), '<a class="page-link" href="#">', 1, '</a>', '</li>');
- from++;
- }
- if (this.options.pageNumber >= 4) {
- if (this.options.pageNumber === 4 || this.totalPages === 6 || this.totalPages === 7) {
- from--;
- } else {
- html.push('<li class="page-item page-first-separator disabled">', '<a class="page-link" href="#">...</a>', '</li>');
- }
- to--;
- }
- }
- if (this.totalPages >= 7) {
- if (this.options.pageNumber >= this.totalPages - 2) {
- from--;
- }
- }
- if (this.totalPages === 6) {
- if (this.options.pageNumber >= this.totalPages - 2) {
- to++;
- }
- } else if (this.totalPages >= 7) {
- if (this.totalPages === 7 || this.options.pageNumber >= this.totalPages - 3) {
- to++;
- }
- }
- for (i = from; i <= to; i++) {
- html.push(Utils.sprintf('<li class="page-item%s">', i === this.options.pageNumber ? ' active' : ''), '<a class="page-link" href="#">', i, '</a>', '</li>');
- }
- if (this.totalPages >= 8) {
- if (this.options.pageNumber <= this.totalPages - 4) {
- html.push('<li class="page-item page-last-separator disabled">', '<a class="page-link" href="#">...</a>', '</li>');
- }
- }
- if (this.totalPages >= 6) {
- if (this.options.pageNumber <= this.totalPages - 3) {
- html.push(Utils.sprintf('<li class="page-item page-last%s">', this.totalPages === this.options.pageNumber ? ' active' : ''), '<a class="page-link" href="#">', this.totalPages, '</a>', '</li>');
- }
- }
- html.push(Utils.sprintf('<li class="page-item page-next"><a class="page-link" href="#">%s</a></li>', this.options.paginationNextText), '</ul>', '</div>');
- }
- this.$pagination.html(html.join(''));
- if (!this.options.onlyInfoPagination) {
- $pageList = this.$pagination.find('.page-list a');
- $pre = this.$pagination.find('.page-pre');
- $next = this.$pagination.find('.page-next');
- $number = this.$pagination.find('.page-item').not('.page-next, .page-pre');
- if (this.options.smartDisplay) {
- if (this.totalPages <= 1) {
- this.$pagination.find('div.pagination').hide();
- }
- if (pageList.length < 2 || this.options.totalRows <= pageList[0]) {
- this.$pagination.find('span.page-list').hide();
- }
- // when data is empty, hide the pagination
- this.$pagination[this.getData().length ? 'show' : 'hide']();
- }
- if (!this.options.paginationLoop) {
- if (this.options.pageNumber === 1) {
- $pre.addClass('disabled');
- }
- if (this.options.pageNumber === this.totalPages) {
- $next.addClass('disabled');
- }
- }
- if ($allSelected) {
- this.options.pageSize = this.options.formatAllRows();
- }
- // removed the events for last and first, onPageNumber executeds the same logic
- $pageList.off('click').on('click', $.proxy(this.onPageListChange, this));
- $pre.off('click').on('click', $.proxy(this.onPagePre, this));
- $next.off('click').on('click', $.proxy(this.onPageNext, this));
- $number.off('click').on('click', $.proxy(this.onPageNumber, this));
- }
- }
- }, {
- key: 'updatePagination',
- value: function updatePagination(event) {
- // Fix #171: IE disabled button can be clicked bug.
- if (event && $(event.currentTarget).hasClass('disabled')) {
- return;
- }
- if (!this.options.maintainSelected) {
- this.resetRows();
- }
- this.initPagination();
- if (this.options.sidePagination === 'server') {
- this.initServer();
- } else {
- this.initBody();
- }
- this.trigger('page-change', this.options.pageNumber, this.options.pageSize);
- }
- }, {
- key: 'onPageListChange',
- value: function onPageListChange(event) {
- event.preventDefault();
- var $this = $(event.currentTarget);
- $this.parent().addClass('active').siblings().removeClass('active');
- this.options.pageSize = $this.text().toUpperCase() === this.options.formatAllRows().toUpperCase() ? this.options.formatAllRows() : +$this.text();
- this.$toolbar.find('.page-size').text(this.options.pageSize);
- this.updatePagination(event);
- return false;
- }
- }, {
- key: 'onPagePre',
- value: function onPagePre(event) {
- event.preventDefault();
- if (this.options.pageNumber - 1 === 0) {
- this.options.pageNumber = this.options.totalPages;
- } else {
- this.options.pageNumber--;
- }
- this.updatePagination(event);
- return false;
- }
- }, {
- key: 'onPageNext',
- value: function onPageNext(event) {
- event.preventDefault();
- if (this.options.pageNumber + 1 > this.options.totalPages) {
- this.options.pageNumber = 1;
- } else {
- this.options.pageNumber++;
- }
- this.updatePagination(event);
- return false;
- }
- }, {
- key: 'onPageNumber',
- value: function onPageNumber(event) {
- event.preventDefault();
- if (this.options.pageNumber === +$(event.currentTarget).text()) {
- return;
- }
- this.options.pageNumber = +$(event.currentTarget).text();
- this.updatePagination(event);
- return false;
- }
- }, {
- key: 'initRow',
- value: function initRow(item, i, data, parentDom) {
- var _this7 = this;
- var key = void 0;
- var html = [];
- var style = {};
- var csses = [];
- var data_ = '';
- var attributes = {};
- var htmlAttributes = [];
- if (this.hiddenRows.includes(item)) {
- return;
- }
- style = Utils.calculateObjectValue(this.options, this.options.rowStyle, [item, i], style);
- if (style && style.css) {
- for (key in style.css) {
- csses.push(key + ': ' + style.css[key]);
- }
- }
- attributes = Utils.calculateObjectValue(this.options, this.options.rowAttributes, [item, i], attributes);
- if (attributes) {
- for (key in attributes) {
- htmlAttributes.push(key + '="' + Utils.escapeHTML(attributes[key]) + '"');
- }
- }
- if (item._data && !$.isEmptyObject(item._data)) {
- var _iteratorNormalCompletion7 = true;
- var _didIteratorError7 = false;
- var _iteratorError7 = undefined;
- try {
- for (var _iterator7 = Object.entries(item._data)[Symbol.iterator](), _step7; !(_iteratorNormalCompletion7 = (_step7 = _iterator7.next()).done); _iteratorNormalCompletion7 = true) {
- var _ref3 = _step7.value;
- var _ref4 = _slicedToArray(_ref3, 2);
- var k = _ref4[0];
- var v = _ref4[1];
- // ignore data-index
- if (k === 'index') {
- return;
- }
- data_ += ' data-' + k + '="' + v + '"';
- }
- } catch (err) {
- _didIteratorError7 = true;
- _iteratorError7 = err;
- } finally {
- try {
- if (!_iteratorNormalCompletion7 && _iterator7.return) {
- _iterator7.return();
- }
- } finally {
- if (_didIteratorError7) {
- throw _iteratorError7;
- }
- }
- }
- }
- html.push('<tr', Utils.sprintf(' %s', htmlAttributes.length ? htmlAttributes.join(' ') : undefined), Utils.sprintf(' id="%s"', Array.isArray(item) ? undefined : item._id), Utils.sprintf(' class="%s"', style.classes || (Array.isArray(item) ? undefined : item._class)), ' data-index="' + i + '"', Utils.sprintf(' data-uniqueid="%s"', item[this.options.uniqueId]), Utils.sprintf('%s', data_), '>');
- if (this.options.cardView) {
- html.push('<td colspan="' + this.header.fields.length + '"><div class="card-views">');
- }
- if (!this.options.cardView && this.options.detailView) {
- html.push('<td>');
- if (Utils.calculateObjectValue(null, this.options.detailFilter, [i, item])) {
- html.push('\n <a class="detail-icon" href="#">\n <i class="' + this.options.iconsPrefix + ' ' + this.options.icons.detailOpen + '"></i>\n </a>\n ');
- }
- html.push('</td>');
- }
- this.header.fields.forEach(function (field, j) {
- var text = '';
- var value_ = Utils.getItemField(item, field, _this7.options.escape);
- var value = '';
- var type = '';
- var cellStyle = {};
- var id_ = '';
- var class_ = _this7.header.classes[j];
- var style_ = '';
- var data_ = '';
- var rowspan_ = '';
- var colspan_ = '';
- var title_ = '';
- var column = _this7.columns[j];
- if (_this7.fromHtml && typeof value_ === 'undefined') {
- if (!column.checkbox && !column.radio) {
- return;
- }
- }
- if (!column.visible) {
- return;
- }
- if (_this7.options.cardView && !column.cardVisible) {
- return;
- }
- if (column.escape) {
- value_ = Utils.escapeHTML(value_);
- }
- if (csses.concat([_this7.header.styles[j]]).length) {
- style_ = ' style="' + csses.concat([_this7.header.styles[j]]).join('; ') + '"';
- }
- // handle td's id and class
- if (item['_' + field + '_id']) {
- id_ = Utils.sprintf(' id="%s"', item['_' + field + '_id']);
- }
- if (item['_' + field + '_class']) {
- class_ = Utils.sprintf(' class="%s"', item['_' + field + '_class']);
- }
- if (item['_' + field + '_rowspan']) {
- rowspan_ = Utils.sprintf(' rowspan="%s"', item['_' + field + '_rowspan']);
- }
- if (item['_' + field + '_colspan']) {
- colspan_ = Utils.sprintf(' colspan="%s"', item['_' + field + '_colspan']);
- }
- if (item['_' + field + '_title']) {
- title_ = Utils.sprintf(' title="%s"', item['_' + field + '_title']);
- }
- cellStyle = Utils.calculateObjectValue(_this7.header, _this7.header.cellStyles[j], [value_, item, i, field], cellStyle);
- if (cellStyle.classes) {
- class_ = ' class="' + cellStyle.classes + '"';
- }
- if (cellStyle.css) {
- var csses_ = [];
- for (var _key2 in cellStyle.css) {
- csses_.push(_key2 + ': ' + cellStyle.css[_key2]);
- }
- style_ = ' style="' + csses_.concat(_this7.header.styles[j]).join('; ') + '"';
- }
- value = Utils.calculateObjectValue(column, _this7.header.formatters[j], [value_, item, i, field], value_);
- if (item['_' + field + '_data'] && !$.isEmptyObject(item['_' + field + '_data'])) {
- var _iteratorNormalCompletion8 = true;
- var _didIteratorError8 = false;
- var _iteratorError8 = undefined;
- try {
- for (var _iterator8 = Object.entries(item['_' + field + '_data'])[Symbol.iterator](), _step8; !(_iteratorNormalCompletion8 = (_step8 = _iterator8.next()).done); _iteratorNormalCompletion8 = true) {
- var _ref5 = _step8.value;
- var _ref6 = _slicedToArray(_ref5, 2);
- var _k2 = _ref6[0];
- var _v = _ref6[1];
- // ignore data-index
- if (_k2 === 'index') {
- return;
- }
- data_ += ' data-' + _k2 + '="' + _v + '"';
- }
- } catch (err) {
- _didIteratorError8 = true;
- _iteratorError8 = err;
- } finally {
- try {
- if (!_iteratorNormalCompletion8 && _iterator8.return) {
- _iterator8.return();
- }
- } finally {
- if (_didIteratorError8) {
- throw _iteratorError8;
- }
- }
- }
- }
- if (column.checkbox || column.radio) {
- type = column.checkbox ? 'checkbox' : type;
- type = column.radio ? 'radio' : type;
- var c = column['class'] || '';
- var isChecked = value === true || value_ || value && value.checked;
- var isDisabled = !column.checkboxEnabled || value && value.disabled;
- text = [_this7.options.cardView ? '<div class="card-view ' + c + '">' : '<td class="bs-checkbox ' + c + '">', '<input\n data-index="' + i + '"\n name="' + _this7.options.selectItemName + '"\n type="' + type + '"\n ' + Utils.sprintf('value="%s"', item[_this7.options.idField]) + '\n ' + Utils.sprintf('checked="%s"', isChecked ? 'checked' : undefined) + '\n ' + Utils.sprintf('disabled="%s"', isDisabled ? 'disabled' : undefined) + ' />', _this7.header.formatters[j] && typeof value === 'string' ? value : '', _this7.options.cardView ? '</div>' : '</td>'].join('');
- item[_this7.header.stateField] = value === true || !!value_ || value && value.checked;
- } else {
- value = typeof value === 'undefined' || value === null ? _this7.options.undefinedText : value;
- if (_this7.options.cardView) {
- var cardTitle = _this7.options.showHeader ? '<span class="title"' + style + '>' + Utils.getFieldTitle(_this7.columns, field) + '</span>' : '';
- text = '<div class="card-view">' + cardTitle + '<span class="value">' + value + '</span></div>';
- if (_this7.options.smartDisplay && value === '') {
- text = '<div class="card-view"></div>';
- }
- } else {
- text = '<td' + id_ + class_ + style_ + data_ + rowspan_ + colspan_ + title_ + '>' + value + '</td>';
- }
- }
- html.push(text);
- });
- if (this.options.cardView) {
- html.push('</div></td>');
- }
- html.push('</tr>');
- return html.join('');
- }
- }, {
- key: 'initBody',
- value: function initBody(fixedScroll) {
- var _this8 = this;
- var data = this.getData();
- this.trigger('pre-body', data);
- this.$body = this.$el.find('>tbody');
- if (!this.$body.length) {
- this.$body = $('<tbody></tbody>').appendTo(this.$el);
- }
- // Fix #389 Bootstrap-table-flatJSON is not working
- if (!this.options.pagination || this.options.sidePagination === 'server') {
- this.pageFrom = 1;
- this.pageTo = data.length;
- }
- var trFragments = $(document.createDocumentFragment());
- var hasTr = false;
- for (var i = this.pageFrom - 1; i < this.pageTo; i++) {
- var item = data[i];
- var tr = this.initRow(item, i, data, trFragments);
- hasTr = hasTr || !!tr;
- if (tr && typeof tr === 'string') {
- trFragments.append(tr);
- }
- }
- // show no records
- if (!hasTr) {
- this.$body.html('<tr class="no-records-found">' + Utils.sprintf('<td colspan="%s">%s</td>', this.$header.find('th').length, this.options.formatNoMatches()) + '</tr>');
- }
- this.$body.html(trFragments);
- if (!fixedScroll) {
- this.scrollTo(0);
- }
- // click to select by column
- this.$body.find('> tr[data-index] > td').off('click dblclick').on('click dblclick', function (e) {
- var $td = $(e.currentTarget);
- var $tr = $td.parent();
- var item = _this8.data[$tr.data('index')];
- var index = $td[0].cellIndex;
- var fields = _this8.getVisibleFields();
- var field = fields[_this8.options.detailView && !_this8.options.cardView ? index - 1 : index];
- var column = _this8.columns[_this8.fieldsColumnsIndex[field]];
- var value = Utils.getItemField(item, field, _this8.options.escape);
- if ($td.find('.detail-icon').length) {
- return;
- }
- _this8.trigger(e.type === 'click' ? 'click-cell' : 'dbl-click-cell', field, value, item, $td);
- _this8.trigger(e.type === 'click' ? 'click-row' : 'dbl-click-row', item, $tr, field);
- // if click to select - then trigger the checkbox/radio click
- if (e.type === 'click' && _this8.options.clickToSelect && column.clickToSelect && !_this8.options.ignoreClickToSelectOn(e.target)) {
- var $selectItem = $tr.find(Utils.sprintf('[name="%s"]', _this8.options.selectItemName));
- if ($selectItem.length) {
- $selectItem[0].click(); // #144: .trigger('click') bug
- }
- }
- });
- this.$body.find('> tr[data-index] > td > .detail-icon').off('click').on('click', function (e) {
- e.preventDefault();
- var $this = $(e.currentTarget); // Fix #980 Detail view, when searching, returns wrong row
- var $tr = $this.parent().parent();
- var index = $tr.data('index');
- var row = data[index];
- // remove and update
- if ($tr.next().is('tr.detail-view')) {
- $this.find('i').attr('class', Utils.sprintf('%s %s', _this8.options.iconsPrefix, _this8.options.icons.detailOpen));
- _this8.trigger('collapse-row', index, row, $tr.next());
- $tr.next().remove();
- } else {
- $this.find('i').attr('class', Utils.sprintf('%s %s', _this8.options.iconsPrefix, _this8.options.icons.detailClose));
- $tr.after(Utils.sprintf('<tr class="detail-view"><td colspan="%s"></td></tr>', $tr.find('td').length));
- var $element = $tr.next().find('td');
- var content = Utils.calculateObjectValue(_this8.options, _this8.options.detailFormatter, [index, row, $element], '');
- if ($element.length === 1) {
- $element.append(content);
- }
- _this8.trigger('expand-row', index, row, $element);
- }
- _this8.resetView();
- return false;
- });
- this.$selectItem = this.$body.find(Utils.sprintf('[name="%s"]', this.options.selectItemName));
- this.$selectItem.off('click').on('click', function (e) {
- e.stopImmediatePropagation();
- var $this = $(e.currentTarget);
- _this8.check_($this.prop('checked'), $this.data('index'));
- });
- this.header.events.forEach(function (events, i) {
- if (!events) {
- return;
- }
- // fix bug, if events is defined with namespace
- if (typeof events === 'string') {
- events = Utils.calculateObjectValue(null, events);
- }
- var field = _this8.header.fields[i];
- var fieldIndex = _this8.getVisibleFields().indexOf(field);
- if (fieldIndex === -1) {
- return;
- }
- if (_this8.options.detailView && !_this8.options.cardView) {
- fieldIndex += 1;
- }
- var _loop = function _loop(key) {
- _this8.$body.find('>tr:not(.no-records-found)').each(function (i, tr) {
- var $tr = $(tr);
- var $td = $tr.find(_this8.options.cardView ? '.card-view' : 'td').eq(fieldIndex);
- var index = key.indexOf(' ');
- var name = key.substring(0, index);
- var el = key.substring(index + 1);
- var func = events[key];
- $td.find(el).off(name).on(name, function (e) {
- var index = $tr.data('index');
- var row = _this8.data[index];
- var value = row[field];
- func.apply(_this8, [e, value, row, index]);
- });
- });
- };
- for (var key in events) {
- _loop(key);
- }
- });
- this.updateSelected();
- this.resetView();
- this.trigger('post-body', data);
- }
- }, {
- key: 'initServer',
- value: function initServer(silent, query, url) {
- var _this9 = this;
- var data = {};
- var index = this.header.fields.indexOf(this.options.sortName);
- var params = {
- searchText: this.searchText,
- sortName: this.options.sortName,
- sortOrder: this.options.sortOrder
- };
- var request = void 0;
- if (this.header.sortNames[index]) {
- params.sortName = this.header.sortNames[index];
- }
- if (this.options.pagination && this.options.sidePagination === 'server') {
- params.pageSize = this.options.pageSize === this.options.formatAllRows() ? this.options.totalRows : this.options.pageSize;
- params.pageNumber = this.options.pageNumber;
- }
- if (!(url || this.options.url) && !this.options.ajax) {
- return;
- }
- if (this.options.queryParamsType === 'limit') {
- params = {
- search: params.searchText,
- sort: params.sortName,
- order: params.sortOrder
- };
- if (this.options.pagination && this.options.sidePagination === 'server') {
- params.offset = this.options.pageSize === this.options.formatAllRows() ? 0 : this.options.pageSize * (this.options.pageNumber - 1);
- params.limit = this.options.pageSize === this.options.formatAllRows() ? this.options.totalRows : this.options.pageSize;
- if (params.limit === 0) {
- delete params.limit;
- }
- }
- }
- if (!$.isEmptyObject(this.filterColumnsPartial)) {
- params.filter = JSON.stringify(this.filterColumnsPartial, null);
- }
- data = Utils.calculateObjectValue(this.options, this.options.queryParams, [params], data);
- $.extend(data, query || {});
- // false to stop request
- if (data === false) {
- return;
- }
- if (!silent) {
- this.$tableLoading.show();
- }
- request = $.extend({}, Utils.calculateObjectValue(null, this.options.ajaxOptions), {
- type: this.options.method,
- url: url || this.options.url,
- data: this.options.contentType === 'application/json' && this.options.method === 'post' ? JSON.stringify(data) : data,
- cache: this.options.cache,
- contentType: this.options.contentType,
- dataType: this.options.dataType,
- success: function success(res) {
- res = Utils.calculateObjectValue(_this9.options, _this9.options.responseHandler, [res], res);
- _this9.load(res);
- _this9.trigger('load-success', res);
- if (!silent) _this9.$tableLoading.hide();
- },
- error: function error(res) {
- var data = [];
- if (_this9.options.sidePagination === 'server') {
- data = {};
- data[_this9.options.totalField] = 0;
- data[_this9.options.dataField] = [];
- }
- _this9.load(data);
- _this9.trigger('load-error', res.status, res);
- if (!silent) _this9.$tableLoading.hide();
- }
- });
- if (this.options.ajax) {
- Utils.calculateObjectValue(this, this.options.ajax, [request], null);
- } else {
- if (this._xhr && this._xhr.readyState !== 4) {
- this._xhr.abort();
- }
- this._xhr = $.ajax(request);
- }
- }
- }, {
- key: 'initSearchText',
- value: function initSearchText() {
- if (this.options.search) {
- this.searchText = '';
- if (this.options.searchText !== '') {
- var $search = this.$toolbar.find('.search input');
- $search.val(this.options.searchText);
- this.onSearch({ currentTarget: $search, firedByInitSearchText: true });
- }
- }
- }
- }, {
- key: 'getCaret',
- value: function getCaret() {
- var _this10 = this;
- this.$header.find('th').each(function (i, th) {
- $(th).find('.sortable').removeClass('desc asc').addClass($(th).data('field') === _this10.options.sortName ? _this10.options.sortOrder : 'both');
- });
- }
- }, {
- key: 'updateSelected',
- value: function updateSelected() {
- var checkAll = this.$selectItem.filter(':enabled').length && this.$selectItem.filter(':enabled').length === this.$selectItem.filter(':enabled').filter(':checked').length;
- this.$selectAll.add(this.$selectAll_).prop('checked', checkAll);
- this.$selectItem.each(function (i, el) {
- $(el).closest('tr')[$(el).prop('checked') ? 'addClass' : 'removeClass']('selected');
- });
- }
- }, {
- key: 'updateRows',
- value: function updateRows() {
- var _this11 = this;
- this.$selectItem.each(function (i, el) {
- _this11.data[$(el).data('index')][_this11.header.stateField] = $(el).prop('checked');
- });
- }
- }, {
- key: 'resetRows',
- value: function resetRows() {
- var _iteratorNormalCompletion9 = true;
- var _didIteratorError9 = false;
- var _iteratorError9 = undefined;
- try {
- for (var _iterator9 = this.data[Symbol.iterator](), _step9; !(_iteratorNormalCompletion9 = (_step9 = _iterator9.next()).done); _iteratorNormalCompletion9 = true) {
- var row = _step9.value;
- this.$selectAll.prop('checked', false);
- this.$selectItem.prop('checked', false);
- if (this.header.stateField) {
- row[this.header.stateField] = false;
- }
- }
- } catch (err) {
- _didIteratorError9 = true;
- _iteratorError9 = err;
- } finally {
- try {
- if (!_iteratorNormalCompletion9 && _iterator9.return) {
- _iterator9.return();
- }
- } finally {
- if (_didIteratorError9) {
- throw _iteratorError9;
- }
- }
- }
- this.initHiddenRows();
- }
- }, {
- key: 'trigger',
- value: function trigger(name) {
- name += '.bs.table';
- for (var _len2 = arguments.length, args = Array(_len2 > 1 ? _len2 - 1 : 0), _key3 = 1; _key3 < _len2; _key3++) {
- args[_key3 - 1] = arguments[_key3];
- }
- this.options[BootstrapTable.EVENTS[name]].apply(this.options, args);
- this.$el.trigger($.Event(name), args);
- this.options.onAll(name, args);
- this.$el.trigger($.Event('all.bs.table'), [name, args]);
- }
- }, {
- key: 'resetHeader',
- value: function resetHeader() {
- // fix #61: the hidden table reset header bug.
- // fix bug: get $el.css('width') error sometime (height = 500)
- clearTimeout(this.timeoutId_);
- this.timeoutId_ = setTimeout($.proxy(this.fitHeader, this), this.$el.is(':hidden') ? 100 : 0);
- }
- }, {
- key: 'fitHeader',
- value: function fitHeader() {
- var _this12 = this;
- var fixedBody = void 0;
- var scrollWidth = void 0;
- var focused = void 0;
- var focusedTemp = void 0;
- if (this.$el.is(':hidden')) {
- this.timeoutId_ = setTimeout($.proxy(this.fitHeader, this), 100);
- return;
- }
- fixedBody = this.$tableBody.get(0);
- scrollWidth = fixedBody.scrollWidth > fixedBody.clientWidth && fixedBody.scrollHeight > fixedBody.clientHeight + this.$header.outerHeight() ? Utils.getScrollBarWidth() : 0;
- this.$el.css('margin-top', -this.$header.outerHeight());
- focused = $(':focus');
- if (focused.length > 0) {
- var $th = focused.parents('th');
- if ($th.length > 0) {
- var dataField = $th.attr('data-field');
- if (dataField !== undefined) {
- var $headerTh = this.$header.find('[data-field=\'' + dataField + '\']');
- if ($headerTh.length > 0) {
- $headerTh.find(':input').addClass('focus-temp');
- }
- }
- }
- }
- this.$header_ = this.$header.clone(true, true);
- this.$selectAll_ = this.$header_.find('[name="btSelectAll"]');
- this.$tableHeader.css({
- 'margin-right': scrollWidth
- }).find('table').css('width', this.$el.outerWidth()).html('').attr('class', this.$el.attr('class')).append(this.$header_);
- focusedTemp = $('.focus-temp:visible:eq(0)');
- if (focusedTemp.length > 0) {
- focusedTemp.focus();
- this.$header.find('.focus-temp').removeClass('focus-temp');
- }
- // fix bug: $.data() is not working as expected after $.append()
- this.$header.find('th[data-field]').each(function (i, el) {
- _this12.$header_.find(Utils.sprintf('th[data-field="%s"]', $(el).data('field'))).data($(el).data());
- });
- var visibleFields = this.getVisibleFields();
- var $ths = this.$header_.find('th');
- this.$body.find('>tr:first-child:not(.no-records-found) > *').each(function (i, el) {
- var $this = $(el);
- var index = i;
- if (_this12.options.detailView && !_this12.options.cardView) {
- if (i === 0) {
- _this12.$header_.find('th.detail').find('.fht-cell').width($this.innerWidth());
- }
- index = i - 1;
- }
- if (index === -1) {
- return;
- }
- var $th = _this12.$header_.find(Utils.sprintf('th[data-field="%s"]', visibleFields[index]));
- if ($th.length > 1) {
- $th = $($ths[$this[0].cellIndex]);
- }
- var zoomWidth = $th.width() - $th.find('.fht-cell').width();
- $th.find('.fht-cell').width($this.innerWidth() - zoomWidth);
- });
- this.horizontalScroll();
- this.trigger('post-header');
- }
- }, {
- key: 'resetFooter',
- value: function resetFooter() {
- var data = this.getData();
- var html = [];
- if (!this.options.showFooter || this.options.cardView) {
- // do nothing
- return;
- }
- if (!this.options.cardView && this.options.detailView) {
- html.push('<td><div class="th-inner"> </div><div class="fht-cell"></div></td>');
- }
- var _iteratorNormalCompletion10 = true;
- var _didIteratorError10 = false;
- var _iteratorError10 = undefined;
- try {
- for (var _iterator10 = this.columns[Symbol.iterator](), _step10; !(_iteratorNormalCompletion10 = (_step10 = _iterator10.next()).done); _iteratorNormalCompletion10 = true) {
- var column = _step10.value;
- var key = void 0;
- var // footer align style
- falign = '';
- var valign = '';
- var csses = [];
- var style = {};
- var class_ = Utils.sprintf(' class="%s"', column['class']);
- if (!column.visible) {
- return;
- }
- if (this.options.cardView && !column.cardVisible) {
- return;
- }
- falign = Utils.sprintf('text-align: %s; ', column.falign ? column.falign : column.align);
- valign = Utils.sprintf('vertical-align: %s; ', column.valign);
- style = Utils.calculateObjectValue(null, this.options.footerStyle);
- if (style && style.css) {
- for (key in style.css) {
- csses.push(key + ': ' + style.css[key]);
- }
- }
- html.push('<td', class_, Utils.sprintf(' style="%s"', falign + valign + csses.concat().join('; ')), '>');
- html.push('<div class="th-inner">');
- html.push(Utils.calculateObjectValue(column, column.footerFormatter, [data], ' ') || ' ');
- html.push('</div>');
- html.push('<div class="fht-cell"></div>');
- html.push('</div>');
- html.push('</td>');
- }
- } catch (err) {
- _didIteratorError10 = true;
- _iteratorError10 = err;
- } finally {
- try {
- if (!_iteratorNormalCompletion10 && _iterator10.return) {
- _iterator10.return();
- }
- } finally {
- if (_didIteratorError10) {
- throw _iteratorError10;
- }
- }
- }
- this.$tableFooter.find('tr').html(html.join(''));
- this.$tableFooter.show();
- clearTimeout(this.timeoutFooter_);
- this.timeoutFooter_ = setTimeout($.proxy(this.fitFooter, this), this.$el.is(':hidden') ? 100 : 0);
- }
- }, {
- key: 'fitFooter',
- value: function fitFooter() {
- var $footerTd = void 0;
- var elWidth = void 0;
- var scrollWidth = void 0;
- clearTimeout(this.timeoutFooter_);
- if (this.$el.is(':hidden')) {
- this.timeoutFooter_ = setTimeout($.proxy(this.fitFooter, this), 100);
- return;
- }
- elWidth = this.$el.css('width');
- scrollWidth = elWidth > this.$tableBody.width() ? Utils.getScrollBarWidth() : 0;
- this.$tableFooter.css({
- 'margin-right': scrollWidth
- }).find('table').css('width', elWidth).attr('class', this.$el.attr('class'));
- $footerTd = this.$tableFooter.find('td');
- this.$body.find('>tr:first-child:not(.no-records-found) > *').each(function (i, el) {
- var $this = $(el);
- $footerTd.eq(i).find('.fht-cell').width($this.innerWidth());
- });
- this.horizontalScroll();
- }
- }, {
- key: 'horizontalScroll',
- value: function horizontalScroll() {
- var _this13 = this;
- // horizontal scroll event
- // TODO: it's probably better improving the layout than binding to scroll event
- this.trigger('scroll-body');
- this.$tableBody.off('scroll').on('scroll', function (e) {
- if (_this13.options.showHeader && _this13.options.height) {
- _this13.$tableHeader.scrollLeft($(e.currentTarget).scrollLeft());
- }
- if (_this13.options.showFooter && !_this13.options.cardView) {
- _this13.$tableFooter.scrollLeft($(e.currentTarget).scrollLeft());
- }
- });
- }
- }, {
- key: 'toggleColumn',
- value: function toggleColumn(index, checked, needUpdate) {
- if (index === -1) {
- return;
- }
- this.columns[index].visible = checked;
- this.initHeader();
- this.initSearch();
- this.initPagination();
- this.initBody();
- if (this.options.showColumns) {
- var $items = this.$toolbar.find('.keep-open input').prop('disabled', false);
- if (needUpdate) {
- $items.filter(Utils.sprintf('[value="%s"]', index)).prop('checked', checked);
- }
- if ($items.filter(':checked').length <= this.options.minimumCountColumns) {
- $items.filter(':checked').prop('disabled', true);
- }
- }
- }
- }, {
- key: 'getVisibleFields',
- value: function getVisibleFields() {
- var visibleFields = [];
- var _iteratorNormalCompletion11 = true;
- var _didIteratorError11 = false;
- var _iteratorError11 = undefined;
- try {
- for (var _iterator11 = this.header.fields[Symbol.iterator](), _step11; !(_iteratorNormalCompletion11 = (_step11 = _iterator11.next()).done); _iteratorNormalCompletion11 = true) {
- var field = _step11.value;
- var column = this.columns[this.fieldsColumnsIndex[field]];
- if (!column.visible) {
- continue;
- }
- visibleFields.push(field);
- }
- } catch (err) {
- _didIteratorError11 = true;
- _iteratorError11 = err;
- } finally {
- try {
- if (!_iteratorNormalCompletion11 && _iterator11.return) {
- _iterator11.return();
- }
- } finally {
- if (_didIteratorError11) {
- throw _iteratorError11;
- }
- }
- }
- return visibleFields;
- }
- }, {
- key: 'resetView',
- value: function resetView(params) {
- var padding = 0;
- if (params && params.height) {
- this.options.height = params.height;
- }
- this.$selectAll.prop('checked', this.$selectItem.length > 0 && this.$selectItem.length === this.$selectItem.filter(':checked').length);
- if (this.options.height) {
- var toolbarHeight = this.$toolbar.outerHeight(true);
- var paginationHeight = this.$pagination.outerHeight(true);
- var height = this.options.height - toolbarHeight - paginationHeight;
- this.$tableContainer.css('height', height + 'px');
- }
- if (this.options.cardView) {
- // remove the element css
- this.$el.css('margin-top', '0');
- this.$tableContainer.css('padding-bottom', '0');
- this.$tableFooter.hide();
- return;
- }
- if (this.options.showHeader && this.options.height) {
- this.$tableHeader.show();
- this.resetHeader();
- padding += this.$header.outerHeight();
- } else {
- this.$tableHeader.hide();
- this.trigger('post-header');
- }
- if (this.options.showFooter) {
- this.resetFooter();
- if (this.options.height) {
- padding += this.$tableFooter.outerHeight() + 1;
- }
- }
- // Assign the correct sortable arrow
- this.getCaret();
- this.$tableContainer.css('padding-bottom', padding + 'px');
- this.trigger('reset-view');
- }
- }, {
- key: 'getData',
- value: function getData(useCurrentPage) {
- var data = this.options.data;
- if (this.searchText || this.options.sortName || !$.isEmptyObject(this.filterColumns) || !$.isEmptyObject(this.filterColumnsPartial)) {
- data = this.data;
- }
- if (useCurrentPage) {
- return data.slice(this.pageFrom - 1, this.pageTo);
- }
- return data;
- }
- }, {
- key: 'load',
- value: function load(data) {
- var fixedScroll = false;
- // #431: support pagination
- if (this.options.pagination && this.options.sidePagination === 'server') {
- this.options.totalRows = data[this.options.totalField];
- }
- fixedScroll = data.fixedScroll;
- data = Array.isArray(data) ? data : data[this.options.dataField];
- this.initData(data);
- this.initSearch();
- this.initPagination();
- this.initBody(fixedScroll);
- }
- }, {
- key: 'append',
- value: function append(data) {
- this.initData(data, 'append');
- this.initSearch();
- this.initPagination();
- this.initSort();
- this.initBody(true);
- }
- }, {
- key: 'prepend',
- value: function prepend(data) {
- this.initData(data, 'prepend');
- this.initSearch();
- this.initPagination();
- this.initSort();
- this.initBody(true);
- }
- }, {
- key: 'remove',
- value: function remove(params) {
- var len = this.options.data.length;
- var i = void 0;
- var row = void 0;
- if (!params.hasOwnProperty('field') || !params.hasOwnProperty('values')) {
- return;
- }
- for (i = len - 1; i >= 0; i--) {
- row = this.options.data[i];
- if (!row.hasOwnProperty(params.field)) {
- continue;
- }
- if (params.values.includes(row[params.field])) {
- this.options.data.splice(i, 1);
- if (this.options.sidePagination === 'server') {
- this.options.totalRows -= 1;
- }
- }
- }
- if (len === this.options.data.length) {
- return;
- }
- this.initSearch();
- this.initPagination();
- this.initSort();
- this.initBody(true);
- }
- }, {
- key: 'removeAll',
- value: function removeAll() {
- if (this.options.data.length > 0) {
- this.options.data.splice(0, this.options.data.length);
- this.initSearch();
- this.initPagination();
- this.initBody(true);
- }
- }
- }, {
- key: 'getRowByUniqueId',
- value: function getRowByUniqueId(id) {
- var uniqueId = this.options.uniqueId;
- var len = this.options.data.length;
- var dataRow = null;
- var i = void 0;
- var row = void 0;
- var rowUniqueId = void 0;
- for (i = len - 1; i >= 0; i--) {
- row = this.options.data[i];
- if (row.hasOwnProperty(uniqueId)) {
- // uniqueId is a column
- rowUniqueId = row[uniqueId];
- } else if (row._data && row._data.hasOwnProperty(uniqueId)) {
- // uniqueId is a row data property
- rowUniqueId = row._data[uniqueId];
- } else {
- continue;
- }
- if (typeof rowUniqueId === 'string') {
- id = id.toString();
- } else if (typeof rowUniqueId === 'number') {
- if (Number(rowUniqueId) === rowUniqueId && rowUniqueId % 1 === 0) {
- id = parseInt(id);
- } else if (rowUniqueId === Number(rowUniqueId) && rowUniqueId !== 0) {
- id = parseFloat(id);
- }
- }
- if (rowUniqueId === id) {
- dataRow = row;
- break;
- }
- }
- return dataRow;
- }
- }, {
- key: 'removeByUniqueId',
- value: function removeByUniqueId(id) {
- var len = this.options.data.length;
- var row = this.getRowByUniqueId(id);
- if (row) {
- this.options.data.splice(this.options.data.indexOf(row), 1);
- }
- if (len === this.options.data.length) {
- return;
- }
- this.initSearch();
- this.initPagination();
- this.initBody(true);
- }
- }, {
- key: 'updateByUniqueId',
- value: function updateByUniqueId(params) {
- var allParams = Array.isArray(params) ? params : [params];
- var _iteratorNormalCompletion12 = true;
- var _didIteratorError12 = false;
- var _iteratorError12 = undefined;
- try {
- for (var _iterator12 = allParams[Symbol.iterator](), _step12; !(_iteratorNormalCompletion12 = (_step12 = _iterator12.next()).done); _iteratorNormalCompletion12 = true) {
- var _params = _step12.value;
- var rowId = void 0;
- if (!_params.hasOwnProperty('id') || !_params.hasOwnProperty('row')) {
- continue;
- }
- rowId = this.options.data.indexOf(this.getRowByUniqueId(_params.id));
- if (rowId === -1) {
- continue;
- }
- $.extend(this.options.data[rowId], _params.row);
- }
- } catch (err) {
- _didIteratorError12 = true;
- _iteratorError12 = err;
- } finally {
- try {
- if (!_iteratorNormalCompletion12 && _iterator12.return) {
- _iterator12.return();
- }
- } finally {
- if (_didIteratorError12) {
- throw _iteratorError12;
- }
- }
- }
- this.initSearch();
- this.initPagination();
- this.initSort();
- this.initBody(true);
- }
- }, {
- key: 'refreshColumnTitle',
- value: function refreshColumnTitle(params) {
- if (!params.hasOwnProperty('field') || !params.hasOwnProperty('title')) {
- return;
- }
- this.columns[this.fieldsColumnsIndex[params.field]].title = this.options.escape ? Utils.escapeHTML(params.title) : params.title;
- if (this.columns[this.fieldsColumnsIndex[params.field]].visible) {
- var header = this.options.height !== undefined ? this.$tableHeader : this.$header;
- header.find('th[data-field]').each(function (i, el) {
- if ($(el).data('field') === params.field) {
- $($(el).find('.th-inner')[0]).text(params.title);
- return false;
- }
- });
- }
- }
- }, {
- key: 'insertRow',
- value: function insertRow(params) {
- if (!params.hasOwnProperty('index') || !params.hasOwnProperty('row')) {
- return;
- }
- this.options.data.splice(params.index, 0, params.row);
- this.initSearch();
- this.initPagination();
- this.initSort();
- this.initBody(true);
- }
- }, {
- key: 'updateRow',
- value: function updateRow(params) {
- var allParams = Array.isArray(params) ? params : [params];
- var _iteratorNormalCompletion13 = true;
- var _didIteratorError13 = false;
- var _iteratorError13 = undefined;
- try {
- for (var _iterator13 = allParams[Symbol.iterator](), _step13; !(_iteratorNormalCompletion13 = (_step13 = _iterator13.next()).done); _iteratorNormalCompletion13 = true) {
- var _params2 = _step13.value;
- if (!_params2.hasOwnProperty('index') || !_params2.hasOwnProperty('row')) {
- continue;
- }
- $.extend(this.options.data[_params2.index], _params2.row);
- }
- } catch (err) {
- _didIteratorError13 = true;
- _iteratorError13 = err;
- } finally {
- try {
- if (!_iteratorNormalCompletion13 && _iterator13.return) {
- _iterator13.return();
- }
- } finally {
- if (_didIteratorError13) {
- throw _iteratorError13;
- }
- }
- }
- this.initSearch();
- this.initPagination();
- this.initSort();
- this.initBody(true);
- }
- }, {
- key: 'initHiddenRows',
- value: function initHiddenRows() {
- this.hiddenRows = [];
- }
- }, {
- key: 'showRow',
- value: function showRow(params) {
- this.toggleRow(params, true);
- }
- }, {
- key: 'hideRow',
- value: function hideRow(params) {
- this.toggleRow(params, false);
- }
- }, {
- key: 'toggleRow',
- value: function toggleRow(params, visible) {
- var row = void 0;
- var index = void 0;
- if (params.hasOwnProperty('index')) {
- row = this.getData()[params.index];
- } else if (params.hasOwnProperty('uniqueId')) {
- row = this.getRowByUniqueId(params.uniqueId);
- }
- if (!row) {
- return;
- }
- index = this.hiddenRows.indexOf(row);
- if (!visible && index === -1) {
- this.hiddenRows.push(row);
- } else if (visible && index > -1) {
- this.hiddenRows.splice(index, 1);
- }
- this.initBody(true);
- }
- }, {
- key: 'getHiddenRows',
- value: function getHiddenRows(show) {
- var data = this.getData();
- var rows = [];
- var _iteratorNormalCompletion14 = true;
- var _didIteratorError14 = false;
- var _iteratorError14 = undefined;
- try {
- for (var _iterator14 = data[Symbol.iterator](), _step14; !(_iteratorNormalCompletion14 = (_step14 = _iterator14.next()).done); _iteratorNormalCompletion14 = true) {
- var row = _step14.value;
- if (this.hiddenRows.includes(row)) {
- rows.push(row);
- }
- }
- } catch (err) {
- _didIteratorError14 = true;
- _iteratorError14 = err;
- } finally {
- try {
- if (!_iteratorNormalCompletion14 && _iterator14.return) {
- _iterator14.return();
- }
- } finally {
- if (_didIteratorError14) {
- throw _iteratorError14;
- }
- }
- }
- this.hiddenRows = rows;
- return rows;
- }
- }, {
- key: 'mergeCells',
- value: function mergeCells(options) {
- var row = options.index;
- var col = this.getVisibleFields().indexOf(options.field);
- var rowspan = options.rowspan || 1;
- var colspan = options.colspan || 1;
- var i = void 0;
- var j = void 0;
- var $tr = this.$body.find('>tr');
- var $td = void 0;
- if (this.options.detailView && !this.options.cardView) {
- col += 1;
- }
- $td = $tr.eq(row).find('>td').eq(col);
- if (row < 0 || col < 0 || row >= this.data.length) {
- return;
- }
- for (i = row; i < row + rowspan; i++) {
- for (j = col; j < col + colspan; j++) {
- $tr.eq(i).find('>td').eq(j).hide();
- }
- }
- $td.attr('rowspan', rowspan).attr('colspan', colspan).show();
- }
- }, {
- key: 'updateCell',
- value: function updateCell(params) {
- if (!params.hasOwnProperty('index') || !params.hasOwnProperty('field') || !params.hasOwnProperty('value')) {
- return;
- }
- this.data[params.index][params.field] = params.value;
- if (params.reinit === false) {
- return;
- }
- this.initSort();
- this.initBody(true);
- }
- }, {
- key: 'updateCellById',
- value: function updateCellById(params) {
- var _this14 = this;
- if (!params.hasOwnProperty('id') || !params.hasOwnProperty('field') || !params.hasOwnProperty('value')) {
- return;
- }
- var allParams = Array.isArray(params) ? params : [params];
- allParams.forEach(function (_ref7) {
- var id = _ref7.id,
- field = _ref7.field,
- value = _ref7.value;
- var rowId = void 0;
- rowId = _this14.options.data.indexOf(_this14.getRowByUniqueId(id));
- if (rowId === -1) {
- return;
- }
- _this14.data[rowId][field] = value;
- });
- if (params.reinit === false) {
- return;
- }
- this.initSort();
- this.initBody(true);
- }
- }, {
- key: 'getOptions',
- value: function getOptions() {
- // Deep copy
- return $.extend(true, {}, this.options);
- }
- }, {
- key: 'getSelections',
- value: function getSelections() {
- var _this15 = this;
- // fix #2424: from html with checkbox
- return this.options.data.filter(function (row) {
- return row[_this15.header.stateField] === true;
- });
- }
- }, {
- key: 'getAllSelections',
- value: function getAllSelections() {
- var _this16 = this;
- return this.options.data.filter(function (row) {
- return row[_this16.header.stateField];
- });
- }
- }, {
- key: 'checkAll',
- value: function checkAll() {
- this.checkAll_(true);
- }
- }, {
- key: 'uncheckAll',
- value: function uncheckAll() {
- this.checkAll_(false);
- }
- }, {
- key: 'checkInvert',
- value: function checkInvert() {
- var $items = this.$selectItem.filter(':enabled');
- var checked = $items.filter(':checked');
- $items.each(function (i, el) {
- $(el).prop('checked', !$(el).prop('checked'));
- });
- this.updateRows();
- this.updateSelected();
- this.trigger('uncheck-some', checked);
- checked = this.getSelections();
- this.trigger('check-some', checked);
- }
- }, {
- key: 'checkAll_',
- value: function checkAll_(checked) {
- var rows = void 0;
- if (!checked) {
- rows = this.getSelections();
- }
- this.$selectAll.add(this.$selectAll_).prop('checked', checked);
- this.$selectItem.filter(':enabled').prop('checked', checked);
- this.updateRows();
- if (checked) {
- rows = this.getSelections();
- }
- this.trigger(checked ? 'check-all' : 'uncheck-all', rows);
- }
- }, {
- key: 'check',
- value: function check(index) {
- this.check_(true, index);
- }
- }, {
- key: 'uncheck',
- value: function uncheck(index) {
- this.check_(false, index);
- }
- }, {
- key: 'check_',
- value: function check_(checked, index) {
- var $el = this.$selectItem.filter('[data-index="' + index + '"]');
- var row = this.data[index];
- if ($el.is(':radio') || this.options.singleSelect) {
- var _iteratorNormalCompletion15 = true;
- var _didIteratorError15 = false;
- var _iteratorError15 = undefined;
- try {
- for (var _iterator15 = this.options.data[Symbol.iterator](), _step15; !(_iteratorNormalCompletion15 = (_step15 = _iterator15.next()).done); _iteratorNormalCompletion15 = true) {
- var r = _step15.value;
- r[this.header.stateField] = false;
- }
- } catch (err) {
- _didIteratorError15 = true;
- _iteratorError15 = err;
- } finally {
- try {
- if (!_iteratorNormalCompletion15 && _iterator15.return) {
- _iterator15.return();
- }
- } finally {
- if (_didIteratorError15) {
- throw _iteratorError15;
- }
- }
- }
- this.$selectItem.filter(':checked').not($el).prop('checked', false);
- }
- row[this.header.stateField] = checked;
- $el.prop('checked', checked);
- this.updateSelected();
- this.trigger(checked ? 'check' : 'uncheck', this.data[index], $el);
- }
- }, {
- key: 'checkBy',
- value: function checkBy(obj) {
- this.checkBy_(true, obj);
- }
- }, {
- key: 'uncheckBy',
- value: function uncheckBy(obj) {
- this.checkBy_(false, obj);
- }
- }, {
- key: 'checkBy_',
- value: function checkBy_(checked, obj) {
- var _this17 = this;
- if (!obj.hasOwnProperty('field') || !obj.hasOwnProperty('values')) {
- return;
- }
- var rows = [];
- this.options.data.forEach(function (row, i) {
- if (!row.hasOwnProperty(obj.field)) {
- return false;
- }
- if (obj.values.includes(row[obj.field])) {
- var $el = _this17.$selectItem.filter(':enabled').filter(Utils.sprintf('[data-index="%s"]', i)).prop('checked', checked);
- row[_this17.header.stateField] = checked;
- rows.push(row);
- _this17.trigger(checked ? 'check' : 'uncheck', row, $el);
- }
- });
- this.updateSelected();
- this.trigger(checked ? 'check-some' : 'uncheck-some', rows);
- }
- }, {
- key: 'destroy',
- value: function destroy() {
- this.$el.insertBefore(this.$container);
- $(this.options.toolbar).insertBefore(this.$el);
- this.$container.next().remove();
- this.$container.remove();
- this.$el.html(this.$el_.html()).css('margin-top', '0').attr('class', this.$el_.attr('class') || ''); // reset the class
- }
- }, {
- key: 'showLoading',
- value: function showLoading() {
- this.$tableLoading.show();
- }
- }, {
- key: 'hideLoading',
- value: function hideLoading() {
- this.$tableLoading.hide();
- }
- }, {
- key: 'togglePagination',
- value: function togglePagination() {
- this.options.pagination = !this.options.pagination;
- var button = this.$toolbar.find('button[name="paginationSwitch"] i');
- if (this.options.pagination) {
- button.attr('class', this.options.iconsPrefix + ' ' + this.options.icons.paginationSwitchDown);
- } else {
- button.attr('class', this.options.iconsPrefix + ' ' + this.options.icons.paginationSwitchUp);
- }
- this.updatePagination();
- }
- }, {
- key: 'toggleFullscreen',
- value: function toggleFullscreen() {
- this.$el.closest('.bootstrap-table').toggleClass('fullscreen');
- }
- }, {
- key: 'refresh',
- value: function refresh(params) {
- if (params && params.url) {
- this.options.url = params.url;
- }
- if (params && params.pageNumber) {
- this.options.pageNumber = params.pageNumber;
- }
- if (params && params.pageSize) {
- this.options.pageSize = params.pageSize;
- }
- this.initServer(params && params.silent, params && params.query, params && params.url);
- this.trigger('refresh', params);
- }
- }, {
- key: 'resetWidth',
- value: function resetWidth() {
- if (this.options.showHeader && this.options.height) {
- this.fitHeader();
- }
- if (this.options.showFooter && !this.options.cardView) {
- this.fitFooter();
- }
- }
- }, {
- key: 'showColumn',
- value: function showColumn(field) {
- this.toggleColumn(this.fieldsColumnsIndex[field], true, true);
- }
- }, {
- key: 'hideColumn',
- value: function hideColumn(field) {
- this.toggleColumn(this.fieldsColumnsIndex[field], false, true);
- }
- }, {
- key: 'getHiddenColumns',
- value: function getHiddenColumns() {
- return this.columns.filter(function (_ref8) {
- var visible = _ref8.visible;
- return !visible;
- });
- }
- }, {
- key: 'getVisibleColumns',
- value: function getVisibleColumns() {
- return this.columns.filter(function (_ref9) {
- var visible = _ref9.visible;
- return visible;
- });
- }
- }, {
- key: 'toggleAllColumns',
- value: function toggleAllColumns(visible) {
- var _iteratorNormalCompletion16 = true;
- var _didIteratorError16 = false;
- var _iteratorError16 = undefined;
- try {
- for (var _iterator16 = this.columns[Symbol.iterator](), _step16; !(_iteratorNormalCompletion16 = (_step16 = _iterator16.next()).done); _iteratorNormalCompletion16 = true) {
- var column = _step16.value;
- column.visible = visible;
- }
- } catch (err) {
- _didIteratorError16 = true;
- _iteratorError16 = err;
- } finally {
- try {
- if (!_iteratorNormalCompletion16 && _iterator16.return) {
- _iterator16.return();
- }
- } finally {
- if (_didIteratorError16) {
- throw _iteratorError16;
- }
- }
- }
- this.initHeader();
- this.initSearch();
- this.initPagination();
- this.initBody();
- if (this.options.showColumns) {
- var $items = this.$toolbar.find('.keep-open input').prop('disabled', false);
- if ($items.filter(':checked').length <= this.options.minimumCountColumns) {
- $items.filter(':checked').prop('disabled', true);
- }
- }
- }
- }, {
- key: 'showAllColumns',
- value: function showAllColumns() {
- this.toggleAllColumns(true);
- }
- }, {
- key: 'hideAllColumns',
- value: function hideAllColumns() {
- this.toggleAllColumns(false);
- }
- }, {
- key: 'filterBy',
- value: function filterBy(columns) {
- this.filterColumns = $.isEmptyObject(columns) ? {} : columns;
- this.options.pageNumber = 1;
- this.initSearch();
- this.updatePagination();
- }
- }, {
- key: 'scrollTo',
- value: function scrollTo(value) {
- if (typeof value === 'string') {
- value = value === 'bottom' ? this.$tableBody[0].scrollHeight : 0;
- }
- if (typeof value === 'number') {
- this.$tableBody.scrollTop(value);
- }
- if (typeof value === 'undefined') {
- return this.$tableBody.scrollTop();
- }
- }
- }, {
- key: 'getScrollPosition',
- value: function getScrollPosition() {
- return this.scrollTo();
- }
- }, {
- key: 'selectPage',
- value: function selectPage(page) {
- if (page > 0 && page <= this.options.totalPages) {
- this.options.pageNumber = page;
- this.updatePagination();
- }
- }
- }, {
- key: 'prevPage',
- value: function prevPage() {
- if (this.options.pageNumber > 1) {
- this.options.pageNumber--;
- this.updatePagination();
- }
- }
- }, {
- key: 'nextPage',
- value: function nextPage() {
- if (this.options.pageNumber < this.options.totalPages) {
- this.options.pageNumber++;
- this.updatePagination();
- }
- }
- }, {
- key: 'toggleView',
- value: function toggleView() {
- this.options.cardView = !this.options.cardView;
- this.initHeader();
- // Fixed remove toolbar when click cardView button.
- // this.initToolbar();
- var $icon = this.$toolbar.find('button[name="toggle"] i');
- if (this.options.cardView) {
- $icon.removeClass(this.options.icons.toggleOff);
- $icon.addClass(this.options.icons.toggleOn);
- } else {
- $icon.removeClass(this.options.icons.toggleOn);
- $icon.addClass(this.options.icons.toggleOff);
- }
- this.initBody();
- this.trigger('toggle', this.options.cardView);
- }
- }, {
- key: 'refreshOptions',
- value: function refreshOptions(options) {
- // If the objects are equivalent then avoid the call of destroy / init methods
- if (Utils.compareObjects(this.options, options, true)) {
- return;
- }
- this.options = $.extend(this.options, options);
- this.trigger('refresh-options', this.options);
- this.destroy();
- this.init();
- }
- }, {
- key: 'resetSearch',
- value: function resetSearch(text) {
- var $search = this.$toolbar.find('.search input');
- $search.val(text || '');
- this.onSearch({ currentTarget: $search });
- }
- }, {
- key: 'expandRow_',
- value: function expandRow_(expand, index) {
- var $tr = this.$body.find(Utils.sprintf('> tr[data-index="%s"]', index));
- if ($tr.next().is('tr.detail-view') === !expand) {
- $tr.find('> td > .detail-icon').click();
- }
- }
- }, {
- key: 'expandRow',
- value: function expandRow(index) {
- this.expandRow_(true, index);
- }
- }, {
- key: 'collapseRow',
- value: function collapseRow(index) {
- this.expandRow_(false, index);
- }
- }, {
- key: 'expandAllRows',
- value: function expandAllRows(isSubTable) {
- var _this18 = this;
- if (isSubTable) {
- var $tr = this.$body.find(Utils.sprintf('> tr[data-index="%s"]', 0));
- var detailIcon = null;
- var executeInterval = false;
- var idInterval = -1;
- if (!$tr.next().is('tr.detail-view')) {
- $tr.find('> td > .detail-icon').click();
- executeInterval = true;
- } else if (!$tr.next().next().is('tr.detail-view')) {
- $tr.next().find('.detail-icon').click();
- executeInterval = true;
- }
- if (executeInterval) {
- try {
- idInterval = setInterval(function () {
- detailIcon = _this18.$body.find('tr.detail-view').last().find('.detail-icon');
- if (detailIcon.length > 0) {
- detailIcon.click();
- } else {
- clearInterval(idInterval);
- }
- }, 1);
- } catch (ex) {
- clearInterval(idInterval);
- }
- }
- } else {
- var trs = this.$body.children();
- for (var i = 0; i < trs.length; i++) {
- this.expandRow_(true, $(trs[i]).data('index'));
- }
- }
- }
- }, {
- key: 'collapseAllRows',
- value: function collapseAllRows(isSubTable) {
- if (isSubTable) {
- this.expandRow_(false, 0);
- } else {
- var trs = this.$body.children();
- for (var i = 0; i < trs.length; i++) {
- this.expandRow_(false, $(trs[i]).data('index'));
- }
- }
- }
- }, {
- key: 'updateFormatText',
- value: function updateFormatText(name, text) {
- if (this.options[Utils.sprintf('format%s', name)]) {
- if (typeof text === 'string') {
- this.options[Utils.sprintf('format%s', name)] = function () {
- return text;
- };
- } else if (typeof text === 'function') {
- this.options[Utils.sprintf('format%s', name)] = text;
- }
- }
- this.initToolbar();
- this.initPagination();
- this.initBody();
- }
- }]);
- return BootstrapTable;
- }();
- BootstrapTable.DEFAULTS = DEFAULTS;
- BootstrapTable.LOCALES = LOCALES;
- BootstrapTable.COLUMN_DEFAULTS = COLUMN_DEFAULTS;
- BootstrapTable.EVENTS = EVENTS;
- // BOOTSTRAP TABLE PLUGIN DEFINITION
- // =======================
- var allowedMethods = ['getOptions', 'getSelections', 'getAllSelections', 'getData', 'load', 'append', 'prepend', 'remove', 'removeAll', 'insertRow', 'updateRow', 'updateCell', 'updateByUniqueId', 'removeByUniqueId', 'getRowByUniqueId', 'showRow', 'hideRow', 'getHiddenRows', 'mergeCells', 'refreshColumnTitle', 'checkAll', 'uncheckAll', 'checkInvert', 'check', 'uncheck', 'checkBy', 'uncheckBy', 'refresh', 'resetView', 'resetWidth', 'destroy', 'showLoading', 'hideLoading', 'showColumn', 'hideColumn', 'getHiddenColumns', 'getVisibleColumns', 'showAllColumns', 'hideAllColumns', 'filterBy', 'scrollTo', 'getScrollPosition', 'selectPage', 'prevPage', 'nextPage', 'togglePagination', 'toggleView', 'refreshOptions', 'resetSearch', 'expandRow', 'collapseRow', 'expandAllRows', 'collapseAllRows', 'updateFormatText', 'updateCellById'];
- $.BootstrapTable = BootstrapTable;
- $.fn.bootstrapTable = function (option) {
- for (var _len3 = arguments.length, args = Array(_len3 > 1 ? _len3 - 1 : 0), _key4 = 1; _key4 < _len3; _key4++) {
- args[_key4 - 1] = arguments[_key4];
- }
- var value = void 0;
- this.each(function (i, el) {
- var data = $(el).data('bootstrap.table');
- var options = $.extend({}, BootstrapTable.DEFAULTS, $(el).data(), (typeof option === 'undefined' ? 'undefined' : _typeof(option)) === 'object' && option);
- if (typeof option === 'string') {
- if (!allowedMethods.includes(option)) {
- throw new Error('Unknown method: ' + option);
- }
- if (!data) {
- return;
- }
- value = data[option].apply(data, args);
- if (option === 'destroy') {
- $(el).removeData('bootstrap.table');
- }
- }
- if (!data) {
- $(el).data('bootstrap.table', data = new $.BootstrapTable(el, options));
- }
- });
- return typeof value === 'undefined' ? this : value;
- };
- $.fn.bootstrapTable.Constructor = BootstrapTable;
- $.fn.bootstrapTable.defaults = BootstrapTable.DEFAULTS;
- $.fn.bootstrapTable.columnDefaults = BootstrapTable.COLUMN_DEFAULTS;
- $.fn.bootstrapTable.locales = BootstrapTable.LOCALES;
- $.fn.bootstrapTable.methods = allowedMethods;
- $.fn.bootstrapTable.utils = Utils;
- // BOOTSTRAP TABLE INIT
- // =======================
- $(function () {
- $('[data-toggle="table"]').bootstrapTable();
- });
- })(jQuery);
- });
|