
Search In
A hot pattern in web plan nowadays is the utilization of sticky headers, where the top part of a page containing key components, for example, the menu bar once looked past gets to be settled on the page, keeping on staying obvious. The accompanying i
Send letters to the editor by mail (P.O. Box 70710, Fairbanks AK 99707), by fax (907-452-7917) or via email (letters@newsminer.com). Writers are limited to one letter every 30 days. All letters must contain no more than 350 words and include a full n
Let’s start with the basics. The very first thing that comes to mind when we think PC protection is Antivirus, but how does this software work?
Antivirus is a software that protects and removes known viruses, worms and trojans fr
Every object in OpenERP is based on OSV i.e Object Service and this service implements full Object-Relational Mapping enabling developers not to worry for the simple SQL operations.
In OpenERP, we have such ORM methods that are very useful. Here are
To create a new Facebook application, register on https://developers.facebook.com and make a new application that will generate a Facebook application id and secret key which you will use in your development.
After creating the application open the
You will need the following kind of python code declaration in your .py file:
class product_category(orm.Model):
_inherit = 'product.category'
_columns = {
'ean_sequence_id': fields.many2one('ir.sequence', 'Ean Sequence'),
}
If you want generate the barcode for product in odoo You will need the following kind of python code declaration in your .py file:
from openerp.osv import fields, orm
from openerp.tools.translate import _
def isodd(x):
return bool(x % 2)
In Sql Server while writing queries sometimes we need to the data from multiple tables or you can say that output of one query becomes input to another one.
In this case we will write the nested queries that will get data from the other table a
hello Readers , here is a simple blog on animated flipping menus using css3. I have created simple animated menus by using transition and rotate property of css3. In this I have created an unordered list of menus , on mouse hover on a par
Overriding Equality of objects
In ruby the equality of the objects depend upon several things, which are
a) ==
b) hash
c) eql?
In normal cases whenever you run == method for string numbers etc it works perfectly fine, but if there are two identic
