Element Not Found in CakePHP (Notice (1024))

Hellow Friend, If you are facing Element Not Found (notic-1024)  error  After saving,editing,deleting data in cakePHP. This Error Comes from this line in your Code or setFlash Error. $this->Session->setFlash('Your_Mess...

Link Button in asp.net

Link Button is a hyperlink style button control in asp.net which implements <a></a> anchor that uses Asp.net Post back Mechanism to post the data on server. LINK BUTTON EXAMPLE:- In this example we will have two link butt...

Managing Data files

Hello Readers! As we all know a file is a collection of information which is stored on computer's disk and information can be saved to files and then later reused. But, what is the use of file handling why it is required?? Well, let's tak...

Properties of the GridView Control

Behavior Properties of the GridView Control AllowPaging Property sets to true/false. It is used to support the paging in gridview control. AllowSorting This property supports sorting in gridview control and...

Memory management operators

C uses malloc() and calloc() function to allocate memory dynamically at runtime. Similarly it uses the function free() to free dynamically allocated memory. New operator can be used to create objects of any type.It takes the following general ...

To Implement two stacks in an array in C++?

To Implement two stacks in an array #include<iostream> #include<stdlib.h> using namespace std; class twoStacks { int *a; int size; int top1, top2; //top of two stacks public: twoStacks(int n) //...

How to remove item from ArrayList

The below example will help you to remove an Arraylist item using the element index. To remove an item from an arrayList I have used Object remove (int index) method. This method returns a reference to the item that was removed. You can see below...

Promises in Angularjs

Promises - AngularJS's promise provides a built-in service $q. It provide a way to execute asynchronous call in series by registering it with a promise object. Let us now elaborate promise and deferred. Deferred - It represent the ...

Events and Methods in jQuery

jQuery is a javascript library used to solve various task by writing less number of codes. JQUERY EVENT- An event express the particular moment when something happens. List of events:- Mouse Events Keyboard Events Form Ev...

how can Menu Breadcrumb module is used in my tpl.php file in drupal?

Hello Readers , Breadcrumbs or breadcrumb trails are a graphical control element used as a navigational aid in user interfaces. It allows users to keep track of their locations within programs, documents or websites. So in th...

ArrayList Class

ArrayList: The arraylist class provides dynamic arrays for storing elements. It extends AbstractList class and implements List interface. It stores only one type of objects (generic array). Syntax: ArrayList<String> arr=new Array...

Screenshot with Frame in android

Android studio gives a feature to create frame for your Screen-shots. It is useful and looks good at the time of publishing app on GooglePlay. Here are the steps to take Screen-shot with frame in Android Studio. 1. Open DDMS from Android Mo...

Screen Recording with Android Studio

Hello Friends, Sometime we need to record Android Screen as Movie. This is very useful for Bug reporting and for app promotion. Android Studio has ability to record device's Screen as movie. Android studio give button in DDMS to record vi...

Naming Conventions in CakePHP

If You are confused in CakePHP naming Conventions this blog helps you more to Understand about the Naming Conventions. All naming Convention Depends on your database table name which should be proper name. When Your are creating CakePHP Pro...

How to check if the password is same as one typed before.

Here we will learn how to check if the password entered in the two input boxes, is correct or not using jquery. In the below example initially there will be two input box with labels password and confirm password. When we type a password in eithe...

PHP Session

when we work on an application ,the fist thing we do is open it we do some updates on it and then close it, this is similar than an session. the system know who we are,it knows every thing i.e when we start working on application, when we closed ...

useful things you can make from URL in codeinter

Hello Reader's in this blog we will see most usefull things which you can make from your website URL, by using codeingter. Lets talk about the SEO freindly URL. In some site you have seen the URL's are very clean and short. This is imp...

NOT operator in SQL

NOT Operator: The SQL NOT operator is used to reverse a condition in a SQL query. It is used with SELECT, DELETE, UPDATE, or INSERT statement. It can be used with other operators like BETWEEN, IN , EXISTS but it will reverse the condition. ...

How to Find Value inside Table Row using JavaScript

If you have large amout of data in your table and its contain hundreds or thousands of rows and columns. One cannot expect users to keep scrolling vertically/horizontally for finding information of their interest. My blog show you an easiest w...

Objects in javascripts

Lets understand "Objects" in javascript. Object: It is a collection of property and each property is associated with name value pair. The object can contain any data type. Lets understand this with the help of an example: var demoObj = {...

How to make shopping cart in Codeigniter

Hello Reader's if you are developing the project in Codeignter then CI offers you a lot more featured libraries. Shopping cart is on of them. Now in this blog we will see how to develop shopping cart by Library. Suppose your website offers you...

How to print all the files in a directory using PHP

Hello Reader's if you need to get all the files that exists inside any directory then you can get it by using codeigntier FTP class library. This is quick and very easy to get result. For example if you have amazon S3 bucket and you wish to get...

How to integrate an autoresponder in Adobe Muse?

Hi, Recently, I've built my first landing page in adobe muse but when I was about to finish, I realized that if I insert the HTML code for my email autoresponder using "object >> insert HTML", then there is no way to modify or style my ...

Code Review And Code Walkthrough With Their Advantages:-

Code Review:- Code Review is formal scrutiny process, which can determine and eliminate the dependencies in the code like buffer overflows and memory leaks. Advantages Of The Code Review:- Professional reviews or inspects are properly ...

How to make Custom Animation switching Activity

In the below example I have created Custom Animation while Switching Activity. Here I have created two activity, In first activity I have added left and right xml using methodTransition() and in Second activity I have added top and bottom xml. Al...

How to Set TMP Directory Permission in CakePHP using Ubuntu

Hi, If you are facing "unable to write 'cake_dev_en-us'" Warning,Then I Wrote This Blog For You. if you have Already unzip CakePHP Framework in your Directory and set Database setting. Now Follow These Steps to set Permission for TMP Direc...

How to Add Managers to Google Plus Page

As you already know that most of the internet marketers hardly make you of Google plus platform for marketing any brand, product, local business or a community because Google plus social...

How to make Publication Article page layout in android

In the below example I have created PublicationArticle layout. Here Frist I have created LinearLayout and then created all layout within main layout after then I have added scrollbar in main layout, In scrollbar I have added TextView, Image View,...

How can I do change background color of an Chekbox using css?

Hello readers... I face a problem in changing the background color of a check-box. Please help me out from this problem. By using background property it takes its default value as you have seen the color and text of a check- box will change to ...

How to reverse linkedlist in java ?

There are two way to reverse a linked list that are using recursion or using iteration. This operation takes O(n) time complexity during iteration method. Here is the code to reverse linked list using iterator : public void reverseLinked...

How to merge linked list in java

If we have two sorted linked list and we want to merge both in a new list without creating new node space then we can use recursive approach for this . This approach takes O(max(m,n)) time complexity for merging. Like we have a linked list nam...

Can someone help me annotate this code, I don't fully understand it

This was the only piece of code that I could find to clear all the radio buttons in my form but I don't know how to explain it. I've only been learning basic C# and can't find a clear explanation for the code or how it works. public IEnumerabl...

Deletionin linkedlist in java

A linked list is type of data structure that contains items in linear order. Deleting an item from linked list performs O(n) time complexity. you can perform two type of deletion from linked list either you can delete first item of list or in any...

Code Inspection And Its Advantages:-

What Is Code Inspection In The Software Testing ? Code inspection is a type of static testing. This comes under the review process of any application. This is a regular or formal type of process for any application or software. Code inspection...

How to change data on changing the option box

Hello Reader's if you are looing to develop the html form which changes the data on changing the values in option box, then in this blog you can see how it is done. To making this form we will start from html file. And its code will go like this...

Difference between Singleton and Prototype bean

Singleton Bean Scope The singleton bean is termed as a stateless bean i.e. it doesn't carry any state with it. Only one instance of the object is created which is defined by this type of bean. One instance is created per container.All the o...

Quality Control And Quality Control Process:-

What Is Quality Control ? Normally quality control is a group of procedures utilized by the different-different companies to accomplish the quality limits or quality parameters and constantly enhance the company's capability to assure that an ...

How to create registration screen design in android

In the below example I have created registration page layout. Here FIrst I have created LinearLayout and then all layout within a main LinearLayout after then I have added Toolbar, scrollbar, TextView, ImageView I have also used RelativeLayou...

BETWEEN and NOT BETWEEN Operator

BETWEEN Operator: It is used to fetch values which lies within a range given in BETWEEN operator. Syntax: SELECT columnname(s) FROM tablename WHERE columnname BETWEEN value1 AND value2; Example: SELECT * FROM Employee WHERE ...

Static Vs Dynamic Testing?

Under Static Testing code is not performed/executed. Maybe it manually verifys the code, necessity documents, and design documents to discover errors. Consequently, the name "static". Mail goal of this testing is to enhance the nature of findi...

Events In Javascript

We can handle interaction of javascript with html document with the help of events that take place when user perform some task or when browser performs some manipulation on a page. Below are some example of an events:- Loading of page ...

Case Expression in SQL

Case Statement: Case Statement is used to provide IF-ELSE functionality in a SQL query to fetch result. We provide multiple conditions and according to condition matches the value will change for that that column value. Syntax: SELECT ...

How to make slide check box in html using CSS?

Hello Reader's if you are looking for slider design of checkbox then this blog will be helpful to you. Lets see how to make checkbox with slider desing. First we will create the html file and it's code will go like this:- <div> ...

What is view in Sql server

A View is a virtual table which is created form another table and its content are defined by a query. In real scenarios we use views for security purpose by allowing users to access data through the view, without granting the users permissions to...

Linked list implementation in android

Linked list is a type of data structure that is a collections of nodes where nodes linked to one another using some pointer or reference. linked list is efficient for insertion operations because it uses two pointer head and trail that make it ea...

Quality Assurance & Quality Assurance Criteria

What Is Quality Assurance & Quality Assurance Criteria ? Quality Assurance:- Quality assurance is determined as the verifying and reporting or describing approaches utilized to furnish the shareholders with the information required to p...

Different techniques utilized for Static/Dynamic Testing?

Testing Techniques utilized for Static Testing:- Informal or Casual Reviews: This sort/type of survey which doesn't follow any procedure to discover errors in the document. Under this procedure, you simply survey the document and give informal...

Age and Email validation by using javasciprt

Lets see an illustration how we can validate age and email id through javascript In this example,we are taking inputs from user in age(textbox) and Email (Textbox). By using functions of javascript we can validate both the values. fu...

Data Types

In javascript,There are variables in which we can store the values. We declare a variable with the var keyword: var myVariable; The variables have different data types in javascript. VariableExplanationExample StringIt takes "A stri...

Physics Engine in Games

  Over past few Years there is a boom in Gaming industry, we have seen and played some most anticipated games which have enlightened us not just because of their astonishing Graphics but due to their gameplay as well, and physics Engine h...
1 142 292