https://github.com/ankane/chartkick.js
https://developers.google.com/chart/
http://www.chartjs.org/
http://www.oesmith.co.uk/morris.js/
http://www.highcharts.com/
https://razorflow.com/
{# File path: YourBundle / Resources / views / Form / fields.html.twig #} | |
{% block form_widget_simple %} | |
{% spaceless %} | |
{% set type = type|default('text') in ['date','time'] ? 'text' : type|default('text') %} | |
<input type="{{ type }}" {{ block('widget_attributes') }} {% if value is not empty %}value="{{ value }}" {% endif %}/> | |
{% endspaceless %} | |
{% endblock form_widget_simple %} | |
{# How to use: #} |
$Id$ | |
; API | |
api = 2 | |
; Core | |
core = 7.x |
{% form_theme form _self %} | |
{% block form_label %} | |
{% endblock %} | |
{{ form_widget(form.field_name) }} |
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
http://williamdurand.fr/2012/08/02/rest-apis-with-symfony2-the-right-way/
http://welcometothebundle.com/symfony2-rest-api-the-best-2013-way/
http://welcometothebundle.com/web-api-rest-with-symfony2-the-best-way-the-post-method/
http://welcometothebundle.com/symfony2-rest-api-the-best-way-part-3/
https://github.com/schmittjoh/JMSSerializerBundle https://github.com/FriendsOfSymfony/FOSRestBundle https://github.com/mmoreram/ControllerExtraBundle
[Dynatable] (http://www.dynatable.com/)
[Backgrid.js] (http://backgridjs.com/)
[w2ui - Grid] (http://w2ui.com/web/demo/grid)
[SlickGrid] (https://github.com/mleibman/SlickGrid)
[mmurph211 / Grid] (https://github.com/mmurph211/Grid)
[EditableGrid] (http://www.editablegrid.net/)
[flexigrid] (http://flexigrid.info/)
[Simple data grid] (http://mbraak.github.io/simple-data-grid/)
[DataTables] (http://datatables.net/)
/** | |
* @param integer $id | |
* | |
* @return array | |
*/ | |
public function findBySomething($id) | |
{ | |
$queryBuilder = $this->queryBySomething($id); | |
return $queryBuilder->getQuery()->getResult(); |