
Search In
It is very easy in Joomla to assign login modules to selected web pages. You need to follow the following steps:
Login to backend of your website(Joomla administrator).
Go to Extensions --> Module Manager (You will get a page displaying all the
To customize the information of Login Form module according to your requirement you need to follow the following steps:
Login to the backend of Joomla site(administrator).
Select Extensions -> Module Manager. A list module appears.
Search for Lo
Instead of modifying existing views in place (by overwriting them), Odoo provides view inheritance where children "extension" views are applied on top of root views, and can add or remove content from their parent. Code like below->
<record id
Clone copies the exact copy of the original (same address.id) and the dup copy is a new record (address.id = nil). Any changes you will made in the clone copy will be changed the original object, but any changes to the dup copy attributes will remain
There are two ways to dynamically access object property:-
1.Dot Notation
2.Bracket notation
var eg = {“first1”: "101", “second”: "202"};
console.log(eg.first1);
var key1 = “first”+1; alert(eg1); // first1
console.log(eg[key1]);
The dot notatio
Navigate to Logging and errors in the `DEVELOPMENT` section of the `Configuration`. This page provides a few options used to control how errors are displayed and logged
Under the ERROR MESSAGES TO DISPLAY you have three options
None
Errors and
Hello Reader's!
If you are new to wordpress and need to set your own logo from admin then you can use the wordpress custom logo management in the code:-
First create of open the file, Functions.php in the root directory.
now paste the code below:-


TestComplete - Keyword Test
TestComplete is an automation testing and quality assurance tool. It supports keyword-driven testing which allows the user to create, modify and record the tests.
How to create a new Keyword test:
Every project have Key
Please go through the below details to create a Task Scheduler. It can be done by two ways either creating console application, windows application or creating a window service. What I have done is created a windows application and schedule the ta
If you came across to a requirement where you want to make UIImage Background Transparent then use below method to achieve it.
+(UIImage *)changeWhiteColorTransparent: (UIImage *)image{
CGImageRef rawImageRef=image.CGImage;
const CGFloat colorMaski
