This repository was archived by the owner on Apr 17, 2019. It is now read-only.
L5 fix - #252
Open
bmartus wants to merge 6 commits into
Open
Conversation
hillelcoren
commented
Mar 29, 2015
Any plans on merging this into the master? Thanks |
yamilrevilla
commented
Apr 2, 2015
Hi guys, The views are returned encoded, like this: <table id="pEOW3vx2" class="table table-bordered">
<colgroup>
<col class="con0" />
<col class="con1" />
<col class="con2" />
</colgroup>
<thead>
<tr>
<th align="center" valign="middle" class="head1">id</th>
<th align="center" valign="middle" class="head2">Nombre</th>
<th align="center" valign="middle" class="head3">Slug</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<script type="text/javascript">
jQuery(document).ready(function(){
// dynamic table
oTable = jQuery('#pEOW3vx2').dataTable({
"sPaginationType": "full_numbers",
"bProcessing": false,
"sPaginationType": "full_numbers",
"bProcessing": false,
"sAjaxSource": "http:\/\/localhost:8000\/test",
"bServerSide": true,
});
oTable.addClass('table-striped ');
});
</script>I tried everything but i can't figure it out. Can you please help me? |
bmartus
commented
Apr 2, 2015
Author
Are you using the new blade tag syntax around the Datatable tags? {!! !!} |
minkbear
commented
Apr 10, 2015
@yamilrevilla I comfirmed as @bmartus mention above {!! !!}. It's work. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This is a temporary fix while you work through your rewrite that you've mentioned in some issue comments. It's based on a fork of bart/datatable l5 branch, with a couple more fixes to make it work out of the box, as far as I can tell.