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
// replace dentalExchangeApp with the name of your Angular App. | |
// angular-file-upload.js needs to be included on your page, | |
// and included as a dependency in your App | |
dentalExchangeApp.factory('fileUpload', function($upload) { | |
return { | |
get: function($files, callback) { | |
//https://github.com/danialfarid/angular-file-upload | |
//callback is added so that you can access the returned data inside of your preferred scope. | |
var filename = $files[0].name; | |
for (var i = 0; i < $files.length; i++) { |
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
$this->widget('zii.widgets.grid.CGridView', array( | |
'dataProvider' => $dataProvider, | |
'id'=>'order-grid', | |
'columns'=>array( | |
array( | |
'header' => 'Word', | |
'name'=> 'Word', | |
'value' => $data->lemma |