Technology

Transition – Know the Effect!

This is all about the timing of your perception. We know how to paint a webpage, let’s add some magic to it and we have the wand called “Transition”. See The Magic Take a box with some initial parameters ,add a background-color(say red) and change the background-color on hover(say green, or any of your favorite!). <div […]

Arushi Shukla
Arushi Shukla
Read

Technology

Why prefer Sling for building a website and how to get started ?

With all the options out there to create a personal website: WordPress, Drupal or Joomla to name a few why would anyone create a site from scratch anymore? Naturally creating something from scratch takes a lot more work than simply taking something Out of the Box (OOTB). A number of open source projects allow users […]

Arpit Gupta
Arpit Gupta
Read

Automation TestingTechnologyTesting

Working with Array of Elements in Protractor

What is ElementArrayFinder? ElementArrayFinder is an array of WebElements which is used to set up a chain of conditions that identify an array of elements. This allows you to perform actions (i.e. click, getText) on them as you would on an array of WebElements. The action will apply to every element identified by the ElementArrayFinder. […]

AngularJSFront End DevelopmentTechnology

Scope in AngularJs Custom Directive

In AngularJs ‘directive’ plays an important role. AngularJs custom directive has many options like replace, scope, transclude etc. Here we will discuss ‘scope’ property. The scope can have 2 types of value: 1.Boolean 2.Object 1. Boolean : When scope’s value is false:- It defaults value. It creates a new scope but just similar to its […]

Vineeta Sharma
Vineeta Sharma
Read

Technology

Stylish input type file upload with image Preview

Few days back I have tried to change the look of input type file but unable to change like background,border etc. Actually, it looks different in all browsers. Now I found a solution to do this. Here is the HTML which have been used:- [java] <div class="uploadOuter"> <input type="text" class="uploadText"/> <input type="file" class="uploadFile"/> </div> <div […]

Grails

Restrict Ajax request caching in SpringSecurity

Spring Security has a nice feature of request caching. When user try to access secured resource without logging in into the system, spring security caches that request and redirect the user to the login page. After successful authentication it redirects user to that cached request. This works for both Ajax and non-ajax requests. To restrict […]

Jitendra Singh
Jitendra Singh
Read

iOSSoftware developmentTechnology

Playing with AutoLayout

Playing with AutoLayouts in iOS:- AutoLayouts was introduced in iOS 6.0. It is basically used for making ios app development easy to support different screen sizes(iPad/iPhone) with using same storyboard/View. For using AutoLayouts, You should have an idea about “Constraints”. Constraints is basically a rule that allows a view to set its position and size. […]

Sandeep Kumar
Sandeep Kumar
Read

Technology

Cloud Computing – Key Trends

Cloud computing has today grown from becoming a familiar term in context of its application to being recognized as an integral part of an enterprise IT strategy. It is a hassle free, infrastructure-free form of IT investment which is clearly futuristic as well. Gone are the days when a company was restricted to the boundaries […]

Shikha Matta
Shikha Matta
Read

Technology

Integrate Google Analytics Api to fetch Page views count

My use case was to show count of Page Views and Unique Page Views using Google analytics. Though there is already enough documentation provided with detailed explanation, it takes time to understand where to get required parameters to call those APIs, due to nested structure of Analytics account. We can refer here to get detailed […]