Add your own alternative version
Stats
528K views 23.9K downloads 222 bookmarked
Posted
18 Apr 2017
|
Comments and Discussions
|
|
Good job 
|
|
|
|
|
Can you add steps to create Angular 7 with MVC?
hi
|
|
|
|
|
Nowadays, we are using ASP.NET Core with Angular front end, there are plenty of articles available online. If you are interested step by step Node.js with Angular front end (MEAN stack) application development. you can check my complete series here: Professional Application Development in MEAN Stack
|
|
|
|
|
I really enjoyed this. Thank you for sharing
|
|
|
|
|
Hi,
As explained from step 110 to 115, the steps to incorporate modal popup in angular project, Is there any similar way to get chart and SSRS report viewer packages?
|
|
|
|
|
Hi Yaseer,
Thankyou for such an Excellent article with each step approach to the solution.
The Effort taken to create steps and explanation are awesome.
Please keep up the Good work. All The Best
Regards
Aadil Syed
|
|
|
|
|
I followed the steps but stuck on point number 57 as "App" folder was not generated automatically. If I will create that manually, what about the files inside this?
I want to use Angular6 in my existing web project which is in MVC5
|
|
|
|
|
This is my Task:
1st Modal Popup with form should validate form and on submit button of 1st Popup,
it should open another Modal Popup asking user to confirm weather to perform task or not and on click of Ok(Submit) button of second popup should perform that task(post--http request).
I am trying using two modal Popup on same HTML performing previous task on submit button of second modal popup button. But on click of second modal popup button it is closing the modal and on first modal without confirmation it is running the task since I am subscribe to it. Please help me to solve this issue.
|
|
|
|
|
|
|
|
|
How to use Webpack instead of systemjs?
What should be the webpack.config.js?
|
|
|
|
|
Firstly, Thank you for your awesome code but I face the problem when trying to publish my project to IIS. that would be nice when you give me a hint or something.
|
|
|
|
|
|
|
Error:
Must supply a value for form control with name: 'Id'
code:
put(url: string, id: number, model: any): Observable<any> {
let body = JSON.stringify(model);
let headers = new Headers({ 'Content-Type': 'application/json' });
let options = new RequestOptions({ headers: headers });
return this._http.put(url+id, body, options)
.map((response: Response) => <any>response.json())
.catch(this.handleError);
}
api/EmployeeAPI/undefined Failed to load resource: the server responded with a status of 400 (Bad Request)
modified 9-Mar-18 5:18am.
|
|
|
|
|
I am trying to deploy the application on IIS however I am getting error 'System' is undefined on console an application is stuck in Index page.
Am I doing something wrong?
Thanks
|
|
|
|
|
Hi,Would you please help to deploy this solution to IIS as a Web application.
|
|
|
|
|
|
zone.js:388 Error: (SystemJS) Unexpected token <
SyntaxError: Unexpected token <
at eval (<anonymous>)
Evaluating http:
Error loading http:
Unable to load transpiler to transpile http:
Error loading http:
at eval (<anonymous>)
Evaluating http:
Error loading http:
Unable to load transpiler to transpile http:
Error loading http:
|
|
|
|
|
Same here... Any explanations/solutions on this?
Thanks!
|
|
|
|
|
 Unable to load transpiler to transpile http://localhost:62838/node_modules//ng2-bs3-modal/ng2-bs3-modal.js
I got this error as well, please check your systemjs config file. The localhost address listed in the error has two forward slashes after node_modules, it is because you have a syntax error in systemjs config file. Here is my systemjs.config.js file:
(function (global) {
System.config({
paths: {
'npm:': 'node_modules/'
},
defaultJSExtensions: true,
map: {
'app': 'app',
'@angular/core': 'npm:@angular/core/bundles/core.umd.js',
'@angular/common': 'npm:@angular/common/bundles/common.umd.js',
'@angular/compiler': 'npm:@angular/compiler/bundles/compiler.umd.js',
'@angular/platform-browser': 'npm:@angular/platform-browser/bundles/platform-browser.umd.js',
'@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js',
'@angular/http': 'npm:@angular/http/bundles/http.umd.js',
'@angular/router': 'npm:@angular/router/bundles/router.umd.js',
'@angular/forms': 'npm:@angular/forms/bundles/forms.umd.js',
'rxjs': 'npm:rxjs',
'angular-in-memory-web-api': 'npm:angular-in-memory-web-api/bundles/in-memory-web-api.umd.js',
'ng2-bs3-modal': 'npm:ng2-bs3-modal/'
},
packages: {
app: {
main: 'main.js',
defaultExtension: 'js',
meta: {
'./*.js': {
loader: 'systemjs-angular-loader.js'
}
}
},
rxjs: {
defaultExtension: 'js'
},
'ng2-bs3-modal':
{ main: 'ng2-bs3-modal.js', defaultExtension: 'js' },
}
});
})(this);
I had the same problem and was experimenting with bringing in other modal packages ('ng2-bootstrap-modal'). Hope this helped 
|
|
|
|
|
Thank you so much for putting this information nicely. By the way the latest version of "ng2-bs3-modal" (ie 0.13.0) simply doesn't work for this solution due to changes made to the plugin.. One needs to continue using the version in the article.
|
|
|
|
|
Hi Yaserr,
Firstly thank you for your article. I am new in WebAPI and Angular. I know asp.Net MVC good. I tried your sample project by downloading also i am writing. But angular didnt work. Only run asp.Net MVC. The Index view seem like "Loading.." and link seem like "Home/Index" How can solve this problem ? What can be problem ??
Thank you.
|
|
|
|
|
|
General News Suggestion Question Bug Answer Joke Praise Rant Admin
Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.
|
- Best Web Dev Article of April 2017 : First Prize
|