
Search In
This has been noticed that many times we try to locate an element and we do not get the element. The syntax of jquery selector is also correct but it is unable to find the element. In that case first take a look on entire HTML of the page and there m
In OpenERP first, install the account module and then create the own module and relate it to the fields payment term in account module.
Follow these steps given below:
Step1- First create add_penalty.py file in your own module and pass this file in
JFile is the default library class for handling files upload, copy & delete functions. This can also be used to get the file name, extension and renaming a file while uploading.
Following are the details of functions available that can be used
Call stored procedure in JPA : Here I am going to tell you that how you can call the stored procedure using JPA entity manager. Following is the example to call stored procedure using entity manger.
Suppose we have a stored procedure called 'get_log
Introduction
Node.js is an open source, cross platform JavaScript runtime built on top of Google's V8 JavaScript Engine . It was originally written by Ryan Dahl. Node.js uses an event driven nonblocking I/O model that makes i
Here I have created ProgressBar app in android in which I have used setProgress(), setMessage(), setProgressStyle(),setMax,show() function.
Below code example will help you to create RatingBar function in android.
Step(1)-activity_main.xml
<Re
To get SMS conversation from an Android device we will use following code:
ContentResolver contentResolver = getActivity().getContentResolver();
Uri uri = Uri.parse("content://sms/conversations/");
Cursor cursor = contentReso
jQuery is a flawless library, and for a long time now it has changed the path many engineers take on for their ventures. At the point when jQuery was made, CSS couldn't make complex movements, leaving JavaScript as the best approach. jQuery prove
// C++ program to detect and remove loop
using namespace std;
struct Node
{
int key;
struct Node *next;
};
Node *newNode(int key) //Function to create a node
{
Node *temp = new Node;
temp->key = key;
temp->next = NUL
Hello Readers,
Here, I will tell you about the character limit on textarea using Jquery.
For Example, If the character limit to write on textarea is 100 character ,then we write only 100 character on the textarea not more than 100.
Therefore, we u
