Wednesday, July 6, 2016

Node JS. MongoDB with Angular and asp.net

Dear All,

Just for curiosity, I was exploring NodeJS, MogoDB and its implementation with visual studio.
I came across excellent article that explain step by step process to setting up your visual studio to integrate node JS plugin, how to set up mongoDB and interacting with it using Angular JS.

http://www.dotnetcurry.com/nodejs/1032/nodejs-apps-in-visual-studio-mean-stack

Hope you will also find this article useful.

Thanks Ravi for the excellent post.

Thanks,
Sachin.

Tuesday, February 23, 2016

Uncaught TypeError: func is not a function in init.debug.js

Dear All,

I was facing "Uncaught TypeError: func is not a function" issue when browsing my SharePoint 2010 

site and due to this all the functions in my ribbon was not working.

Whenever I am clicking on ribbon items it always show me loading as shown below  


After digging more in to the issue I found that, in my Javascript code I have written 

ExecuteDelayUntilScriptLoaded(init(),"sp.js")

In the above syntax the '()' after init method was creating the problem.

I replace above syntax with 

ExecuteDelayUntilScriptLoaded(init,"sp.js")

and ribbon start working as expected.

Hope this post will save your time.

Thanks,
Sachin K.