Warren White

Results 43 comments of Warren White

Ok, I had it patched in my development versions, that is why it worked for me. The fix is this commit: [Plugin Tables: Do not create sort/order button when column...

This discussion shows exactly what you ask: [React Adaptation of WET](https://github.com/wet-boew/wet-boew/discussions/9250)

Thought this would be an easy one, but... Problem appears to be when creating a new jQuery object. SImple example: ``` var created = $(""); console.log( created ); ``` With...

Modifying dataTableAllowedTag fixes this issue: ``` dataTableAllowedTag = [ "" ], ``` Because DataTables creates the row with: ``` // Otherwise create a row with a wrapper var created =...

The file is https://github.com/wet-boew/wet-boew/blob/c107a1fbf1dcf15e0e9211106e5e08cfb263bdfe/src/core/dep/jquery-fix.js#L173 And at line # 173 is where dataTableAllowedTag needs to be changed. In its current state, as I mentioned above, the tags: ` "", "", "",...

You need to use `integer values`. Using the value of `1 000` is a string, and the space is converted to `&#160`; Remove the space.

Confirmed, adding 1000 to the lengthMenu converts the 1000 to `1 000` Using: `data-wb-tables='{ "ordering": false,"lengthMenu": [1, 5, 10, 20, 50, 100, 200, 500,1000] }'`

After reading the DataTables API for internationalization, specifically the `French Translation for Datatables`, you must include the `language`. URL here: https://datatables.net/plug-ins/i18n/French The below code snippet fixes your issue. ``` ```

Need a little more information, maybe a code snippet of what you have, and what you are trying to accomplish. I can guess three or four different scenarios. 1 -...

Yes you can, you must define each columns data, for the data you supply. Here is working code for what you want, ``` Name Position City id date Salary ```