index.js
(function () {
appModule.controller('tenant.views.projects.index', [
'$scope', 'abp.services.app.projects',
function ($scope, ProjectService) {
var vm = this;
vm.projects = [];
ProjectService.GetProjects({}).success(function (result) {
vm.projects = result.items;
}
)
//start from here...
}
]);
})();
index.chtml
<div ng-controller="tenant.views.projects.index as vm">
<div class="row margin-bottom-5">
<div class="col-xs-6">
<div class="page-head">
<div class="page-title">
<h1>
<span>@L("projectnames")</span>
</h1>
</div>
</div>
</div>
</div>
<div class="portlet light margin-bottom-0">
<div class="portlet-body">
<h3>@L("Projects")</h3>
<div class="list-group">
<a href="javascript:;" class="list-group-item" ng-repeat="project in vm.projects">
<h4 class="list-group-item-heading"
ddd {{project.DeptDesc}}
</h4>
</a>
</div>
</div>
</div>
</div>
Thanks,
Hi, I see this link. But I need a guide to know where are the area , files to change in theme ?
Thanks,
There are (CreationDate & CreationUserID ) only , I want also ( ModifiedData, ModifiedUserID)
Thanks,
[quote="ismcagdas"]Hi,
protected override void CancelDeletionForSoftDelete(DbEntityEntry entry)
{
}
What is the file to write this code ?
Thanks,
Thanks for your reply. I have sample project ( Acme.PhoneBook) for entity ( Phone ) there is no ( Isdeleted column ) and not used the way as you reply >[NotMapped]
public override bool IsDeleted { get; set; }
Kindly explain me How ?
Regards,
Hi, I could not understand the link you sent. I Do not want to use this field ( isdeleted ) in whole my application for all tables. I want to use hard delete NOT Soft delete.
Thanks,