Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 

Search In

Custom checkbox using jquery

Hello Reader ! Here is an example how to make a custom check box using simple script and css. Script $(document).ready(function(){ $('label').click(function(){ $(this).toggleClass('checkedN'); }); }); css .checkedN {background-position:0

How to make profile module in OpenERP(Odoo)?

In profile module we have to create a profile, we only have to create a new directory in server/addons and we should call this folder. profile_module name, in which we put an empty __init__.py file (as every directory Python imports must contain .py

How to use __openerp__.py in OpenERP/Odoo ?

The __openerp__.py file has containing list of dependencies,conditioning startup order,data files to load at module install,always load groups first and load access rights after groups. For example code below. {'name' : 'SHIVA', 'version' : '1.0',

How to get the text of a checkbox using QTP .

In the below code you can automate the web page using QTP and can find the text with the checkbox adjacent to it . Create a description property with micclass for web checkbox. Set oDesc = Description.create() Set oDesc = Description.create() oDesc

Some basic animation examples in iOS

Here are some basic animation examples like : Fade in/out, rotate, zoom etc. How to use : Add Animations.h and Animations.m files in your project. Import Animations.h class. Invoke required class method in this way : [Animations zoomIn:viewToA

Blink Animation in android

Blink Animation in android Here I write code for blinking any components like TextView, ImageView etc. Here I just use AlphaAnimation class of Animation . TextView textMessageCenter; textMessageCenter = (TextView)rootView.findViewById(R.id.text_me

How to delete last element in an array

Hello Readers , If we have an array and we want to delete the last record in an array then their is a function called array_pop() . The array_pop() function deletes the last element of an array. Example : <?php $a=array("red","green","blue");

Sending an HTML e-mail using Python

All the content are treated as a simple text at when you send a text message using Python. Even if you include HTML tags in a text message, it will display as simple text and HTML tags will not be formatted according to HTML syntax. But Python provid

How to create class in python

In python class statement creates a new class definition and The class has a documentation string which can be accessed via ClassName.__doc__. The class_suite consists of all the component statements defining class members, data attributes and functi

Checking NULL values in SQL

While working with SQL you always face columns with NULL values. For avoiding that you can put a check on it. NULL value is something that is different from nothing and space ALTER proc [dbo].[sp_GetMailToEmployee] ( @EmployeeID int ) as begin

  • 204
1 465 481
Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: