
Search In
In OpenERP first we create custom module and module name is account_demo and then create four file like as __init__.py, __openerp__.py, account_demo.py, account_demo.xml file in your module and create function and function name like accoutss_residual
Hi,
We can show floating label for EditText by using android design support library.
When we input text on EditText, it shows animation by floating labels.
TextInputlayout is newly introduced to show floating label on EditText in design support
If you want to generating basic view in Odoo follow this below step-
Step-1 Go to .xml file and generating basic view like below code.
<!--?xml version="1.0" encoding="utf-8"?-->
<openerp>
<data>
<record id="action_atten
Comparable:- Comparable interface found in java.lang package and it contains only compareTo() method. It use the single sorting technique to write our own comparison logic and is used to sort the elements on the basis of sin
Image cropper is the UI part of the web application to crop the image as requirement using mouse drag-drop.
Image cropper is inbuilt functionality in the Liferay.
Follow below steps to better understand :
Load the below Js and CSS files, if you h
Hello Readers!
Ever wanted to make a div stretch vertically according to the browser window's height?
One solution that instantly appears into our mind is height:100%. But this doesn't work as desired. The reason being % a relative unit. So
In android, we simply hide a view by setting its visibility. We can do this either in programming or in xml.
In programming (we can say in Activity, Fragment etc) there is setVisibility(int) method to set or control the visibility of the view.
Exampl
While doing updation or insertion you can select or insert values based on case selection in SQL
For doing that will provide a better way to get filtered data updated or inserted
ALTER PROC [dbo].[uspGetNudgesDetails]
@AccessToken VARCHAR(50),
@Be
What is Null ? Null means no data or missing data or we don't have a data in a table . If you think Null means 0 ( zero ) than you are wrong .
There can be two condition for Null
1) when SQL is Null
2) when SQL is not Null
If in a table you write
What are Cookies?
Cookies are stored in small text files, on your computer i.e., cookies are the data.
To create a cookie in javascript let us look at the code below :
document.cookie="username= Ramesh";
whenever a browser request a server
