Search
17536 results 13631-13640
Forum
- 21st Mar 2023Checkbox submit conflicts with Column reorderingYou can have more than one class in the :not() selector. See the jQuery :not() docs. Kevin
- 21st Mar 2023Editor - Inline Editing conflicts with Checkbox SubmitYou will want to not include the checkbox column in your selector for inline editing. Something like this: $('#ApForm').on('click', 'tbody td:not(.editor-active)', function (e) { Kevin
- 20th Mar 2023Export Buttons with Different SearchesActually the first button with rows using a function as the selector is a good one. You didn't have the Excel and JSZip libraries. I used the download builder to generate the proper libraries: https://live.datatables.net/gikufecu/8/edit Kevin
- 19th Mar 2023Change the forecolor of a cellI think you will need to make your CSS selector more specific to match the one you want to override. Kevin
- 16th Mar 2023Duplicate background color disappearedof: editor .edit( table.rows( {selected: true} ).indexes(), { title: 'Duplicate
- 16th Mar 2023Live Conditional Formatting without updating data setYou will want to make the selector for this more specific: $( '#table' ).on( 'change', 'input', function () { Maybe something like this: $( '#table' ).on( 'change', 'input[type="text"]', function () { https://jsfiddle.net/qtzkwd01/ Kevin
- 12th Mar 2023How to show total of values in searchpane for one boxI'm not clear about this, sorry. "All" is the same as when nothing is selected, i.e. no filtering is taking place, so there's no advantage to having that as an option. Or am I missing something? Colin
- 10th Mar 2023How to color all cells in a row? (Number of rows and/or columns may vary.)Seems to work okay for me: https://live.datatables.net/jajeboki/1/edit . If you wanted to use a different colour per row, use the :nth-child() selector: https://live.datatables.net/ratecike/1/edit . If you want to set the colour based on the row's data, use the rowCallback option. Allan
- 7th Mar 2023modal info from click on a pictureStart with this example. You can change the selector to be more specific to the td the image is in. In place of the alert you can build your modal with the row or cell data. Kevin
- 21st Feb 2023Multiple sources field + three state checkboxchecked or unchecked is selected. Use a technique such