Featured
-
How Regression Testing Detects Integral Errors In Business Processes
Humans are forever changing and evolving and so to
by kristina.rigina -
Get Display Banner Advertising Opportunity on FindNerd Platform
“Do you have a product or service that nee
by manoj.rawat -
Android O Released with Top 7 New Features for App Developers
Android was founded by Andy Rubin, Rich Miner, Nic
by sudhanshu.tripathi -
Top 5 Features That Make Laravel the Best PHP Framework for Development
Laravel is a free open source Web Framework of PHP
by abhishek.tiwari.458 -
Objective C or Swift - Which Technology to Learn for iOS Development?
Swift programming language is completely based on
by siddharth.sindhi
Tags
An Overview to Map Tag in Html
Hello readers, Today in my blog I will discuss about Map tag which is less used but have various features.
As there are around 142 HTML elements that has been standardized by W3C. Below is the brief description about Map Tag in HTML ...
JObject Class
Namespace: Newtonsoft.Json.Linq
In web api sometimes we often need to send multiple parameters to controller's action(method). In that case we can create model of multiple parameters and wrap multiple parameters to JSON and send it to...
jQuery Uncaught TypeError: Cannot call method 'anyFunc' of undefined on calling angular function
As per my point of view this error can be because of the following two points:
1. If the ID is not provided to the element correctly.
2. If the function is called before the DOM is loaded therefore try to write your function cal...
How to call angular js function from jquery
In one of my project I had a requirement of calling a function written in angular controller from the jQuery function.
Let us understand with the help of an example:
As every controller has $scope, therefore we can access the sc...
Throw Exception from Expression in C# 7.0
Throw Exception from Expression
When we use throw exception inside expression we got compile time error
In C# 7.0 you can directly throw exception from your expression directly. see below code
public string getE...
How to change the background color of even elements in the list?
We can change the background color of the members of the list using filter() function in jQuery.
Note: The filter() function matches each element with the supplied selector and creates a subset of the matching elements.
Let us under...
Hiding or encrypting asset folder in Android
How do I hide or encrypt the assets folder of my Application to protect my resources?
How to use IN keyword in LINQ
In SQL Server, we are very familiar with IN keyword and we use this keyword in many times which is very helpful for us. It save our extra efforts and code line like below query.
To achieve this in LINQ , we heve below t...
Custom Switchery using CSS
Sometimes we need a checkbox to verify that a user has check or uncheck to give answer to some question/statement in yes/no.
As we know that the default checkbox is not so attractive, so we add our style to make a custom checkbox.
So today ...
How To: Qualify & Nurture a Business Sales Lead Like A Pro Your Ultimate Guide
Leads are useless if they don’t go anywhere. Imagine you are a police officer attempting to solve a crime. When everything is said and done, the only leads that count are the ones that lead you to a successful arrest. In busin...
Parallax scrolling to content using CSS
Scrolling effects will be easy now by using the parallax site, that will able to scroll the two section smoothly between the two content div. Here I used three div for setting the different images in the background. While the caption heading for ...
What is checked keyword in c#
Arithmetic operations are very basic in every strongly type programming languages. We will oftenly save the result of this arithmetic computation in certain type of variable. Suppose if I am adding two integers then i will save the result i...
Some Useful Statements Used In Javascript
Hello readers, Today in my blog I will discuss about some useful statements that are used in JavaScript.
Basically the web developers use statements as it allow us to implement different type of logic in our code.
The va...
What is Content Marketing and Its Business Benefits?
The content marketing spilled much ink and businesses use more and more.
What is Content Marketing?
The content marketing is an information content production strategy , it aims to promote the hi...
Get Thumbnail Image from Video Using FFMPEG in C#
FFMPEG is a command line tool to convert multimedia files to another formats.
In this article, we will see how to get thumbnail image from a video using FFMPEG in C#.
Step 1: Create a page to show the thumbnail image of a video
&...
CSS Radial Menu
Hey Readers!
A web page is incomplete without a navigation menu. Besides the navbar, there are other menus that make a web page interactive and help accommodate more information and links in lesser space. Thus, it becomes necessary to include ...
Java Arraylist loop problem
import java.util.InputMismatchException;
import java.util.Scanner;
import java.io.IOException;
import java.util.Random;
public class StringVariables {
public static void main(String[] args) throws NumberFormatException,
...
images from database to jtable. Java
I have an app that contains a database using java sql, and has a jTable that displays the database info. It works fine, EXCEPT for when I am trying to store and display images to one of the columns. I used the jTable1.setModel(DbUtils.resul...
WPF : Deselect items in TreeView
In this blog we will learn how to clear/deselect selected items in TreeView while working on a WPF application. There following scenarios need to be considered before coming up for a solution to the problem:
1) The TreeView is bound&...
Feed Share in Unity
Hello Readers !!
Today I am going to explain about the Feed Sharing on Facebook with Unity.
Feed Sharing is the simplest way to implement the Facebook Share with any App. With this feature, you no need to Implement the Facebook Lo...
text-overflow -CSS
The text-overflow property specifies however overflowed content that's not displayed ought to be signaled to the user. It can either be clipped, or can display an ellipsis or a custom string.
Clipping is applied at the border of ...
How to create Simple Phone Number Picker
Hello readers, Toady in my blog i have tried to create a simple phone number picker using CSS and JavaScript.
While filling many online forms besides names and emails, contact information filed is also essential part to be filled by ...
Bootstrap List Group
The List group component is used to render complex and customized content in lists.
Basic List Groups :-
To get a basic list group −
In element <ul> you should add the class .list-group...
Strong Named assembly
Strong names are used by the assemblies for their unique names. It is used when we want to deploy the assembly in Global Assembly Cache then strong name helps Global Assembly Cache to differentiate two versions. Strong name is basically a unique ...
Strings in JavaScript
Hello Readers,
JavaScript strings are used to store collection of characters or it can be text inside quotes. We can use both single and double quote. Lets talk about the basics of String.
For Example :
va...
Top 7 Tips on How to Become a Great Boss
Though most everyone dreams is to become a boss of a lucrative or successful company, being one is not an easy job to do. Being a boss takes a lot of hard work and challenges to overcome. It is a large plate to fill since the succes...
JavaScript Math object
Hello Readers,
In today's we will learn about math object of JavaScript. We can use this object as it includes many mathematical methods and perform several tasks on numbers.
Lets have a look on the methods:
random()...
10 Best Ideas to Optimize Your Startup Success
When you start a business, it will be challenging. The struggle is real, and the competition is tight in the business world. You need to have the best ideas on how to get your startup on a roll. Read on and learn about a few things ...
How to bind a dynamic dropdown list
In this blog we illustrate how to bind a dynamic dropdown list when dropdown list is coming from a databse in MVC
See the below Example code:
We bind a dropdownList for a States where the list of states is coming from a database.
W...
Bootstrap Helper Class
Helper Classes are those classes , which is used to perform operations and make the code reusable.
Some of the Helper Class used in bootstrap are :-
1. Close Icon :- Bootstrap gives a general close symbol that can be uti...
Abstract Classes-Why and How?
Hi Friends,
Previously in one of my blogs (actually two of them) I was trying to decompress the very compressed definition of delegates that it is a pointer to a methods. Here we will try to decompress another definition or statements for an a...
Default user public layout configuration
If we create a user website in Liferay, we find that it creates a 'Welcome' page on the user dashboard. Liferay creates this page by itself. And for every user, it looks similar, default layout, default color codes, default them...
Which Tool do you Find Best for Web Analysis apart from Google Analytic?
I have been working on multiple SEO projects and to plan a better strategy for them, I need to perform a thorough analysis of its competitors, audience, website technical aspects, keyword strategy & marketing plan. So, I'm looking for the...
Circular Progress Bar
Hi Readers!
Progress bar, as the name says, is used to show a user's progress. The progress can be anything. For example, how far the user has completed a process,
Bootstrap provides many different types of progress bars. C...
WPF : Binding when DataContext not inherited
Introduction :
The DataContext property in WPF is extremely useful because it is inherited by all children. However there are situations where the DataContext is not accessible as the elements are not part of the visual/logical tree. In ...
WPF Converter : Show autoincrement number in ListBox
Introduction
If you want to do data binding between incompatible types, you need to use a converter. A converter converts the value from source type to target type and vice versa. A value converter is a class, that implements the s...
What is a Business Process
Business Process is basically plethora of activities related to structural analysis which produces pioneering services for end users.
It generally represented by Flow Chart which showcase sequence of activities which focus on proc...
Text-orientation Property CSS3
The text-orientation CSS property defines the orientation of the text in every line.
This property solely has a control in vertical mode, that's once writing-mode isn't horizontal-tb. it's helpful to manage the show of wr...
Validation Group in asp.net
Validation group in asp.net helps to validate controls in a group. we can define any number of validation group on a page as per requirement. Each validation group will work independently than other. We set a ValidationGroup property with the sam...
Difference b/w Div and Span Tags
Hello readers, Toady in my blog I will discuss upon the difference b/w Div and Span tag in HTML.
For every beginner it is very confusing where to use which tag either Div or Span.
The <span> and <div> tags ar...
Chaning accordion icons using JQuery or CSS
In this blog i will explain how to change the accordion icon.
I have used two methods here:
Using Jquery
Using CSS
Here is the boostrap accordion html :
<div class="panel-group" id="accordion" role="tablist" aria-multisele...
An Overview to CSS Selectors
Hello readers, Toady in my blog I will about Selectors and its types.
What is selector ?
These are used to select the content that the user want to style.
It can be applied to every element.
It can als...
Where should we use IEnumerable vs IQueryable in LINQ
Both IEnumerable and IQueryable are used for data manipulation in LINQ. As IQueryable interface derives from IEnumerable interface so that whatever IEnumerable can do, IQueryable can also do.
IEnumerable exists in System.Collections namespace ...
Dropdown Menu using PureCSS
Dropdown Menu is used where user has to show list of items for example in selecting countries and state name or finding this list of any latest technology , movies or it should be anything that gives us option to do a choice. This dropdown menu a...
8 Best Learning Management Systems for Business
A learning management system (LMS) is crucial for the success of a company. E-learning is not just a thing for schools and universities, but it is equally required in the corporate world.
E-learning is one of the best ways to manage ...
HTML Anchor target Attribute
The target attribute is used in hyperlinks. It specifies the destination of the hyperlink.
The target attribute is used to determine where to open/load the current link, whether on the same tab, next tab, new window or new frame.
If we do n...
Technique For Performance Testing
Performance testing is complicated and Costly due to huge resource requirements and the time taking process. So performance testing require careful planning and a robust methodology. Performance testing don't have clear goal becau...
Using handlers in android.
Brief Introduction
In Android apps there are scenario where we need to communicate the thread with our UI .Like downloading image from server and communicating to UI thread that downloading is completed or it is interrupted.
Hand...
Location Setting API Android
This blog is about how to show Popup for enable Location setting.
1. Add below dependency to app gradle file.
compile 'com.google.android.gms:play-services:9.6.1'
2. Implement GoogleApiClient.ConnectionCallbacks, GoogleApiClient.OnConn...
How to create a Google coloured button?
Hello readers, Today in my blog I have tried to create a Google colored button.
Before creating this a question arises in my find is it really possible to change each letter in a button to a different color at the same time on hover....