
Search In
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
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
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',
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
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
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
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");
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
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
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
