This repository was archived by the owner on Apr 17, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 153
L5 fix #252
Open
bmartus
wants to merge
6
commits into
Chumper:version3
Choose a base branch
from
bmartus:l5
base: version3
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
L5 fix #252
Conversation
This file contains 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
Any plans on merging this into the master? Thanks |
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? |
Are you using the new blade tag syntax around the Datatable tags? {!! !!} |
@yamilrevilla I comfirmed as @bmartus mention above {!! !!}. It's work. |
Sign up for free
to 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.