Warren White
Warren White
after modifiying: ``` dataTableAllowedTag = [ "", "", "", "", "", "", "", "" ], ``` Then wait for wb-tables to be ready: ``` $(document).on("wb-ready.wb", function(event) { console.log("WB Ready"); $('#checkin-selection-table-body').append($('')...
> this statement > > generate empty tbody I submitted a pull request. https://github.com/wet-boew/wet-boew/pull/9746
> Can we also update jquery-fix to fix the following case: > > `$("#tbody").append("aaaaa")` > > Change to dataTableAllowedTag does not help to fix this case. > I'd recommend using...
Having a button to 'reset' is a bad idea for many reasons. Users can click it accidentally if it were a button. It would stand out as an action to...
Are you missing ```ErrorMessage``` in the ```CustomValidator``` as described here: https://wet-boew.github.io/v4.0-ci/docs/ref/formvalid/formvalid-en.html#MergeSCE I am assuming you are expecting the two error messages to be the same, and I see that the...
This appears to be a timing issue, and happens intermittently. If you refresh the page many times, it will render correctly. Also appears to be an issue only when there...
This is a timing issue then, not because multiple tables on same page. The probelm is where wb-tables updates the already set aria-label. Page html table has ```aria-label="Heritage lighthouses"``` set....
I used this code to debug: ``` (function ($, wb) { "use strict"; $( ".wb-tables" ).on( "wb-ready.wb-tables", function( event ) { console.log("Tables Ready!!"); }); $( ".wb-geomap" ).on( "wb-ready.wb-geomap", function( event,...
This is the fix, sorry don't have time to create a pull request: ```diff diff --git a/src/plugins/deps/geomap-lib.js b/src/plugins/deps/geomap-lib.js index 67d4f2f42..bbcb0f7a7 100644 --- a/src/plugins/deps/geomap-lib.js +++ b/src/plugins/deps/geomap-lib.js @@ -2484,13 +2484,13 @@ Geomap.prototype.addTabularData...
What version of WET and jquery? I am going to assume this has to do with the session timeout, as that is what the js code shows for ```settings= $elem.data();```...