Blog
- December 20, 2010
- How to create application shortcut in Firefox
Hello Friends,
Generally, I use firefox as my default browser. Now, In IE9 and google chrome provide options to create application shortcuts .
Google Chrome : Tools >> create application short cut.
IE9 : Tools >> Add site to start menu.
Mozilla Firefox : ??? (I don't know about create application shortcut.) ...- Read More
- By Bharat Patel
- Comments(0)
- December 13, 2010
- Updating coldfusion 9.0.0 to 9.0.1
Updation of ColdFusion is always painful for me. I am working on ERP level projects which is build on ColdFusion and we have heavily used ColdFusion inbuilt AJAX funtionality, everybody knows that CF use EXTJS for their new ajax component and my favorites are cfgrid, cflayout. But what CF is provide is not always sufficient for client specially working with large project. I have modified cfgrid to put header toolbar and in footer I want to display number of records available etc. I have started ...
- Read More
- By Pritesh
- Comments(0)
- December 1, 2010
- Binding ColdFusion query to DataGrid in Flex
Hi,
In this post I'll explain you how to bind ColdFusion data into Flex grid.
First, get ready with your cfc.
Your cfc method may look like: ...
- Read More
- By Vikas
- Comments(0)
- November 30, 2010
- Full text option is greyed out in MSSql 2008
Today I was trying to setup fulltext indexing on one of my database table. I have finish with creating fulltext catelog and tried to right click on table to create fulltext index but option was greyed out and there is no way to create index. This is becuse Full-text index was diabled at database leve you can enable it by running below statement. use [mydatabase name] go EXEC sp_fulltext_database 'enable' That's it and refresh table group and option is enable now ...
- Read More
- Comments(0)
- November 20, 2010
- jQuery Enable/Disable Specific date
Hello Friends,
In web application most of people use jQuery, jQuery UI and jQuery Plug-ins. Why not? First of all it's free and it reduces no. of code. Any way what i want to say is today one of my client wanted to download data according to date. i.e. Data generated on specific date. Date will be increase day by day so I thought what I need to do? Suddenly, there is a click in mind jQuery UI Datepicker has ability to enable/disable date so I just googled for that and got the code. I really thank TutorBoy.com as they have done this beauty of a code. Let's see below code how to enable/disable date using jQuery UI datepicker. I hope it may be helpful for you.- Read More
- By Bharat Patel
- Comments(2)
- November 11, 2010
- innerHTML vs appendChild
Today I was testing my code, and I found interesting stuff on innerHTML and appendChild method.
I was trying to add new elements to the div.
First, I was creating element by calling DOM method (document.createElement()) and then I append it to my div by calling appendChild() method of the HTML div element.
- Read More
- By Vikas
- Comments(0)
- October 15, 2010
- "The executable signed with invalid entitled" frustrating error but resolved now
I was really happy that I was going to release my first iPhone application. Waiting for my developer account so I can test on my device instead of simulator, Apple has really long process to create developer account and it almost take 2 to 3 weeks to get account. Meanwhile I can't stop myself and try to JailBreak my device to test application on device, this was really smooth 15 mins to jailbrake it and in next 15 mins I was able to run application on iPhone.
After couple of days I got my developer account and in meantime I have finish application so I thought it is now half day work and my application will be for approval. I totally wrong here since last 10 hours I am trying to creating application which I can upload through iTune connect. Only one error "The executable signed with invalid entitled" really frustrating me (I am gonna suiside now :(). I tried to google it and found lot's of solution but didn't work for me.
Restore my iPhone with latest firmware.
- Read More
- Comments(0)
- October 4, 2010
- Strange error "Invalid token  found on line 1 at column 55."
I was building plugin for blog and found really strange error " Invalid token  found on line 1 at column 55.", Google it but found different solution but none of them work for me. Finally I realize that it is because of non printable hexcode inserted in my code which is causing whole issue.
Let me explain whole scenario,
- Read More
- By Pritesh
- Comments(0)
- September 25, 2010
- Pass by reference in coldfusion
Arrays Created as java.util.ArrayList java objects are passed by reference to the ColdFusion Functions...
- Read More
- Comments(2)
- September 24, 2010
- Automated tests using Ant integration of testing frameworks - cfunit, cfcunit and mxunit
If you have seen my previos post, then you might want to automate testing. You can automate all three popular testing frameworks (cfunit, cfcunit and mxunit) with ant.
I've tested in eclipse 3.6 version, but it will aslo work in Adobe ColdFusion Builder.
- Read More
- Comments(0)