Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 

Search In

How to automate Drag and Drop functionality in Selenium webdriver

The following code should be used: WebElement draggable = driver.findElement(By.xpath("//Give the xpath")); WebElement droppable = driver.findElement(By.xpath("//Give the xpath")); Actions action = new Actions(driver); action.dragAndDrop(draggable,

load Url in web View

HI guys, Do you know how to load a url in UIWebView? Please check the below code - UIWebView *chartsWebView; [chartsWebView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://www.google.com"]]]; chartsWebView.scalesPageTo

Prevent from text selection on double click of mouse.

Sometime you may need to prevent from text selection on double click of mouse button. You can use use the following css3 code for the same:- .monthReport label {-webkit-touch-callout: none;-webkit-user-select: none;-khtml-user-select: none;-moz-user

Print Last Executed Mysql Query in Codelgniter

Hi, If you are stuck with printing last executed msql query in codelgniter so with the help of below code, you can print or You can view your last executed mysql query in Codelgniter. echo $this->db->last_query();

Phonegap apps plugins installation issue

When we use cordova plugin in phonegap apps, sometimes we get plugin installation error. We can get rid of from this error by first installing plugman. The code to install plugman is given below. hit it in terminal and then we can install camera, n

How to check null value in NSDictionary

Hi , If you want to check the null values in NSDictionary then use the following code : id value = [dict valueForKey:akey]; if (value == [NSNull null] || value == nil || value == NULL || value == Nil || [value isKindOfCl

How to make unique field and not allow duplicates records in openerp

To make a unique field and do not allow duplicates records in openerp, below is the solution In .py file use this code:- class course(osv.osv): _name="course" _columns={ "name":fields.char("Name"), } _sql_constr

How to hide ‘sort by price’ option in WooCommerce

Hello friends, If you want to get rid of ‘sort by price’ option in you Woo-Commerce site. you can use below css code to hide it: .orderby option[value="price"]{ display: none; } Hope this help you.

How to crop the profile picture before uploading?

Hello everyone, I am facing a problem in uploading a image to server. I am able to successfully capture a image from the camera or select a image from the gallery, but i have to provide a crop option before uploading the image just like in What'sapp

How to use fgets in PHP

Hello Reader's If you need to read a given file line by line then PHP will offer you to use Fgets to do. Lets see it's example as below:- $handle = fopen("yourfile.txt", "r"); if ($handle) { while (($line = fgets($handle)) !== false) {

1 56 408
Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: