thank you sir for your reply.
i will follow up the same layout because m using ABP SPA
and one of my request to guide me through upload photo or document in ABP using ng-model and coding of application.cs file please help me sir . please make a small demo of upload and share with me.
i really need your help
this is my code:
(function () {
var controllerId = 'app.views.addemployeeform';
angular.module('app').controller(controllerId, [
'$scope', '$location', 'abp.services.ameba.employee', function ($scope, $location, employeeService) {
var vm = this;
vm.employeeinfo = {};
var localize = abp.localization.getSource('Ameba');
vm.companyemployeeRegister = function () {
abp.ui.setBusy( //Set whole page busy until getTasks complete
null,
employeeService.createCompanyEmployee(vm.employeeinfo).success(function () {
abp.notify.info("Registration Completed please login to continue");
$location.path('/login')
})
);
};
}]);
})();
sir when i use abp.ui.setBusy() then it work but when we call angularjs function and it take time to fetch data or to insert or to login then its not working no spin is visible to user.
thank you for your kind information after so many days.
**i want to know is this possible to give a design to some pages without boilerplate default design and for rest of the pages it will remain same as default boilerplate design.
if answer is yes please let me know how...???
please reply Thanks in advance**
i added the following bundles in the head of cshtml page.
@Styles.Render("~/Bundles/App/vendor/js")
using abp.ui.setBusy() in angularjs page as follows:
vm.logincheck = function () {
abp.ui.setBusy( //Set whole page busy until getTasks complete
null,
employeeService.getEmployee(
vm.logininfo
).success(function (data) {
vm.employees = data.employees;
var detail = vm.employees;
sessionStorage.setItem("detail", JSON.stringify(detail));
$location.path('/bidding');
})
);
};
please anyone help me to find the issue ...????
thanks in advance
i want to know how we upload a file or photo in boilerplate please give a small demo.
anyone knows please help me
thanks in advance
hello everyone
i want to know that is this any concept to use partial view concept in asp.net boilerplate...???
please reply thanks in advance
sir i will search on web for the solution of above problem and may i get a some information on following topic..???
1.) how we work with the session in boilerplate...??? 2) how we upload image and save in database in boilerplate.???
please reply
thank you sir for your attention and guide
sir
{{emp.description}}
this is the value that is fetched from session to display the user.
and
ng-model="vm.employeedescription.Description"
this is the value that i want to again update to database if user updated
but it always shows null when user click on update button this is the problem.
i have a following code:
<div id="div1" contenteditable="true" class="header-information" style="margin:20px 0" ng-model="vm.employeedescription.Description" spellcheck="false">
{{emp.description}}
</div>
but on button click event i not get the value of this div from ng-model="vm.employeedescription.Description"
how we bind this
please help