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.
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.
Dear All,
Today, I was surprise as I wanted to navigate to all items view for the wiki page library.
Normally when use clicks on wiki page library, it redirect you to wiki home page to display the content which is normal behavior.
As a site owner, I wanted to see all the page inside my wiki page. When I am navigating to wiki page SharePoint removes the library tab from the ribbon which normally appears on any document library.
After spending some time I found that, on wiki page if you navigate to page tab from ribbon, you will find an option view all Pages option which will redirect you to all items page.
Hope this information save a little time for you.
Thanks,
Sachin K.
Hi All,
Please refer to this link to get some useful information on SharePoint 2013 App development Vs Solutions.
Thanks,
Sachin K.
Hi All,
By default SharePoint 2013 doesn’t have a breadcrumb (like the 2010 version used to have). This was a very helpful feature to navigate back in your site and some users really miss it.
Actually its not totally removed from SharePoint but its hidden in SharePoint master page.
To restore it back, Open your site master page in SharePoint designer and search for following tag
Delete the CSS attribute style="display:none;"
Save the modified master page, check it in and publish the major version.
Thanks,
Sachin K.