Search
43646 results 6371-6380
Forum
- 27th Jul 2009create a table with custom filtersto make a new table based on his selections.
- 22nd Jul 2009IE6 + IE7 table blank - other controls visibleis not displaying the table in IE6 + IE7 - but
- 2nd Jun 2009Wrapper div - problems when in a tableusing DataTables inside another table - DataTables generates a wrapper
- 20th Mar 2009Inserted type rows in tableI have split the table into few parts, each
- 3rd Mar 2009reading properties from tableintit properties from the table.. Currently in Alpha version.
- 23rd Jun 2025i need a tableI need more info. Do you actually have a question?
- 2nd Jun 2025div class="span12"> < table id="datatab" class="table table-striped"> @Html.DisDuplicate of this thread. Please don't post duplicate questions. Kevin
- 16th May 2025Set Focus to Cell by Click a Button in TableHi everyone, I want to set the focus to Celle KM when clicking the plus button. Unfortunately, it doesn't work. here my code tablefzg.on('click', 'button', function (e) { let data = tablefzg.row(e.target.closest('tr')).data(); var action = this.className; let tr = e.target.closest('tr'); let row = tablefzg.row(tr); if (action=='GetFZG'){ if (this.innerHTML == '-') { this.innerHTML = "+"; fahrzeugstatus = 0; this.style.backgroundColor = '#F0F0F0'; var set = 0; $.ajax({ url: "/FOM/controllers/fzg_eintragen_einsatz.php", type: 'post', data: {dsid:data.ID,wertset:set}, success: function (data) { return data; } }) } else if (this.innerHTML == '+') { this.innerHTML = "-"; // >> Here the focus should be set on the column/cell KM << tablefzg.cell('KM').focus(); fahrzeugstatus = 1; this.style.backgroundColor = '#60c724'; var set = 1; $.ajax({ url: "/FOM/controllers/fzg_eintragen_einsatz.php", type: 'post', data: {dsid:data.ID,wertset:set}, success: function (data) { return data; } }) } } })
- 9th May 2025My Modal is showing behind my TableCan you link to a test case please? I'm afraid this sort of thing really needs a test case to be able to debug. Allan
- 21st Mar 2025Responsive table - How to customize the style of Accordion button for expand and collapseI use a CSS through the ::before pseudo element to create that triangle: table.dataTable.dtr-column > tbody > tr > td.dtr-control::before, table.dataTable.dtr-column > tbody > tr > th.dtr-control::before, table.dataTable.dtr-column > tbody > tr > td.control::before, table.dataTable.dtr-column > tbody > tr > th.control::before { } Is the full selector. Set the border-width to be 0 and then apply a background image, or content or whatever format it is that you have to display the icon you need. I'd suggest right clicking on the the element and selecting "Inspect" to see the CSS that is applied to the element. Allan