
Search In
When using xcode4.5 or 4.6(i.e ios6) UITableView added to xib files appears as it is. But when it comes to IOS7(i.e When you are using xcode5) along with adding the UITableView to xib you also need to add a small code which will remove that padding.
In jQuery mobile source code find the code:
print("code sample");
$.mobile.zoom = $.extend( {}, {
enabled: !disabledInitially,
locked: false,
disable: function( lock ) {
if ( !disabledInitially && !$.mobile.zoom.locked )
Sometimes, I feel a need to get a PHP array in my JavaScript code. Earlier I make use of implode function of php but recently found new way using json_encode that works very effectively.
Here is my php array:
<?php
$cool_epl_clubs_php = array('M
Game design:
Working with silhouette:
As I have provided the basic information regarding the silhouette principle using on the concept character for game art, lets resume the topic further and see it through details. While developing the basic desi
Hello readers !
Few days back I was facing issue to make public profile page in cakephp. And want to hide controller and action name from url for this I used the below code in routes.php and its work fine.
Router::connect(
'/:username', arra
The SplFileObject class provides an object oriented interface for a file.
$file="upload_file.csv"; //file to parse
Steps:
1) Create SplFileObject class object to the csv file.
$srcFile = new SplFileObject($file);
2)Now loop till end of file f
We can use Bakery SSO module for single sign on in drupal 7. It works with portal or master site and sub-sites or slaves sites, it provides the following features:-
1) If login into the portal site and navigate to sub-site, user will be auto-login.
*Questions/Actions:*
Start by telling about yourself and your experience at Evon.
Ask about candidate profile summary
Ask why want to come to Evon particulary for outstation candidates
Ask for the current company size this will give you idea what kin
Steps to modify data in a DataTable
Suppose we have a DataTable with columns Name,Age, Status
//DataTable dtRecords;
DataRow[] rows = dtRecords.Select();
if (rows != null && rows.Length > 0)
{
fo
How to Work with a Stored Procedure
DELIMITER //
CREATE PROCEDURE `p2` ()
LANGUAGE SQL
DETERMINISTIC
SQL SECURITY DEFINER
COMMENT 'A procedure'
BEGIN
SELECT 'Hello World !';
END//
The four characteristics of a procedure are:
Language : For p
