
Search In
To save image or video into parse database, parse has provided a class PFFile. It can also be used to save documents, music files or any binary data file (upto 10 megabytes only).
To save image first convert image to NSData, assign it to PFFile obje
Following function will expect a generic List and serialize into xml and make an http post request and after receiving response it will again deserialize xml into generic list:-
public customer CreateOrder(customer objCustomerRequest)
{
You are likely asking yourself what could be great about failing. Failing means … well … that you fizzled, that you didn't accomplish the outcomes/results you needed and that things didn't turn out as you trusted/hoped.
For fetching data from database in php, first we have to create a connection from database by using following code.
<?php
$servername = "localhost";
$username = "root";
$password = "pass";
$database = "demo"; //this will contain na
Hello Friends,
In order to fetch the latitude and longitude of a location based on its address,you may use the following code:
double latitude = 0;
double longitude = 0;
Use the google api along with your address
NSString *req = [NSStr
We can generate all possible combinations of given string. Here I made a function get_string_combinations($str), this function will accept string as a parameter and will give you all possible combinations of that string. In this function, I have conv
Hello Friends,
If you are looking to implement star rating with Ajax. Please find the below example for the same:
1) Open your HTML file and write the code below to display stars:
NOTE :: I have attached the primary key with div-id(tutorial-id; ?&g
When we create the product(real and virtual) and computes the stock value and quantity of product in stock and validate than the product(real and virtual) is also maintained in the stock and updated in warehouse and also returns the diction
In res.partner method we can returns the default price unity on run time and we can access the default price unity in Odoo server. For example you can see below code.
from openerp import api
from openerp.osv import osv, fields
from openerp.tools.tr
Hello, readers . In today's blog I am trying to give multiple ways to concatenate a string using JavaScript.
Basically the term “Concatenate” means joining two or more strings and returns a new joined string .
As the
