Search
2906 results 2721-2730
Forum
- 23rd Jul 2018How to add padding in columns of responsive datatable?div.dtr-details span.dtr-title { padding-right: 2em; } will do it to add a little padding. if you want it 50/50, match that and span.dtr-data inline-block and width 50%. Probably need to make the ul tag display:block and 100% width as well. Allan
- 9th May 2018Layout question buttons, searchhave this CSS display: inline-block; so this is why
- 17th Apr 2018How can I create a button when using JQ UI styling.style sheet .dt-buttons { display: inline-block; } and this has cured
- 16th Mar 2018How can I add text to my Bootstrap panel header. Datatables DOM.I think this is just down to CSS, I'm nearly there with: .dataTables_length { display: inline-block; float: right; } #table-title { display: inline-block; margin-right: 15px; }
- 11th Dec 2017Data Tables Custom View then export to csv - problemupdate(data,columns); //data = JSON.parse(data); $('#exportLink').css('display', 'inline-block'); //show button when ready
- 16th Nov 2017Change alternate row colour in a theme.a.dt-button { position: relative; display: inline-block; box-sizing: border-box; margin-right: 0.333em;
- 6th Nov 2017Bug with Buttons colVisdiv.dt-button-collection a.dt-button span:before { display: inline-block; content: '\2610'; padding-right: 6px;
- 20th Oct 2017additional button in editor to change input fieldschange the block to inline-block (I tried editor.field( '...' ).input().parent().css('display',
- 12th Sep 2017How to replace and add buttons to the editor windowsyou might need display: inline-block. Allan
- 16th Sep 2016Disable new button once certain row count is reachednode() ).css( 'display', maxedOut ? 'inline-block' : 'none' ); $( table.button( 1 ).node()