Posts

SharePoint2013 JSOM System.ServiceModel. ServiceActivationException

While Developing a WebPart for SharePoint2013 that will access data from a list using JavaScript Client Object Model (COM or JSCOM/ JCOM) we are getting an Error on Development Machine.

Fancy Image Library For SharePoint2010

Image
A New Experience to view images in SharePoint2010 Image Library.  Deploy it yourself, without developer. This is a purely SharePoint2010 Client Object Model based customisation of Out Of Box image Library that displays larger versions of thumbnail images fetched dynamically to provide a new User Experience. Caption can be added to the enlarged image through Add/Edit form, and every aspect of the Image Gallery exists as plain HTML on the page. The idea is to use JSOM, Css, Jquery and FancyBox jquery extension to view images with advanced UI. 

Hide "Add New Item" link from sharepoint list view if user has already added an item.

Hide "Add New Item" link from sharepoint list view if user has already aaded an item Descibes a javascript method to hide "Add New Item" link from sharepoint list view if user has already aaded an item. i.e. Allowing users to add only one item to the list  from Out Of Box (OOB) view or webpart.

Remote debugging on Android with Chrome developer tools

Image
One of the major and time consuming issue while developing and testing an application is its support on hand held devices. The major stake holders for such devices are iOS safari for Apple devices, stock browser and Chrome for Android devices. For developing cross platform applications these devices and browers plays a key important role. And we invest most of our time in testing, verification and specially resolving issues that occurs only in special cases like some element gets not aligned or get extra space when we run application on one of these device. Or in some cases client sided scripting code stops working.

Designing of Large Scale JavaScript Application Part 5

Image
Inhertance: Having "IS-A" relationship between different objetcs is the basic definition of inheritance.It allows us to define a class in terms of another class, which makes it easier to create and maintain an application. This also provides an opportunity to reuse the code functionality and fast implementation time. However class k/w and inheritance is not directly supported in JavaScript as it is not proper OOP language. But there are ways to implement inheritance generally referd as prototypal inheritance.

Designing of Large Scale JavaScript Application Part 4

Image
In the previous article we have seen that  Modular  approach is best suite for a big application. Designing of modules are crucial part for large scale application but one thing that is pending is How different modules can inteact with each other. The important point we suggest is to make the modules less dependent, loosly coupled, etc etc. but How?

Designing of Large Scale JavaScript Application Part 3

Image
The basic definition of a Module is  Modules are an integral piece of any robust application's architecture and are typically single-purpose parts of a larger system that are interchangeable.