primefaces / primeui

Rich set of javascript-css only widgets
http://www.primefaces.org/primeui
285 stars 125 forks source link

Template support for DataTable Cells #87

Closed cagataycivici closed 8 years ago

cagataycivici commented 8 years ago

As an alternative to content function in column object, add mustache.js template support to be used like;

columns:[
   {field:'year', contentTemplate: 'someel'}
  //...
]
<div  id="someel">
<script type="x-tmpl-mustache">
        <input type="submit" ... {{year}}
    </script>
</div>
cagataycivici commented 8 years ago

@Mrtcndkn Please review picklist, datagrid or any other widget with templating support to implement this.