Posts

Add and remove textbox dynamically using coldfusion and jquery

Image

installation and configuration Wamp server 2 on Windows 8

Image
Download free wamp server from official website from <a href="http://www.wampserver.com/en/">http://www.wampserver.com/en/</a> After Intalling click on Wampserver Short Cut Icon from Desktop. on task bar It shows green color icon it means all services started. Open browser and type localhost or 127.0.0.1 If it shows : ERROR Not Found HTTP Error 404. The requested resource is not found. Go to clicn on green icon - > Apache - >  httpd.conf Change Listen 80 to Listen 81 Open browser and type localhost:81 or 127.0.0.1:81 and if it shows : Forbidden You don't have permission to access / on this server. Then change to > listen 0.0.0.0:81 For phpmyadmin http://localhost:81/phpmyadmin Error MySQL said: Documentation #1045 - Access denied for user 'root'@'localhost' (using password: NO) phpMyAdmin tried to connect to the MySQL server, and the server rejected the connection. You should check the host, user...

Load div content on scroll using coldfusion

Scroll.cfm <cfsetting showdebugoutput="no"> <style> .loading{         display: block;         margin: 0px auto;         text-align: center;     } </style> <script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script> <script> $(document).ready(function() {     var loading = false;     //initial track_load     var track_load = 1;     //a place for my crap     var loadContentDiv = $("#content");     //populate the initial content     loadContent(track_load);         $(window).scroll(function() { //detect page scroll                        if($(window).scrollTop() + $(window).height() == $(...

Upload file on select browse file event

Image
This is the example to show browse button on image on mouse over and remove then on mouse leave using css and javascript and upload file on select browse file event using Coldfusion,CSS and Jquery. After mouse over shows browse image button.

Query Alteration with Coldfusion using Query of Queries (QoQ)

Image
Using alteration in ColdFusion query we can be altered without effecting the identification of a cached query with QOQ. Original Query Output. After Alteration Query Output.

checkbox column on Server side processing and remember selected checkboxes and saving stage between pages

Image
Datatable serverside example following thease  1.Checkbox column on Server side processing  2.Remember selected checkboxes  3.Saving stage between pages  4.Get all the values of the checked checkboxes  5.Edit and Delete with serverside processing  6.Select All and UnSelect all checkboxes Screen 1 Screen 2

Create excel file using Cfspreadsheet