Entries Tagged as 'ColdFusion9'

Coldfusion Builder released

ColdFusion9 , coldfusion builder No Comments »

Good news to all coldfusion developers; Today Coldfusion builder is released. This is the first dedicated IDE (not just a code editor) for coldfusion. If you are a CF guy, you should try this,

http://www.adobe.com/go/trycoldfusionbuilder

Coldfusion Builder is coming along with Flash builder 4 Premium Edition which is also released on today. try it out, Happy coding.

Small UI Issue in CF Grid

ColdFusion9 4 Comments »

While trying to implement samfarmer blog entry example, I found a small UI issue in CF Grid. In My local machine, I installed CF 9 as "Build-in web server" then I configured my web servers using "Web Server Configuration Tool". So I can run my CFM codes in IIS, Apache as well as in build-in web server based upon client requests.

I run the Samfarmer's code in build-in web server's web root. It was working fine.

<cfquery name="getArt" datasource="cfartgallery">
select ARTID, ARTNAME, DESCRIPTION, ISSOLD, PRICE, CURRENT_DATE aDate 
from ART 
</cfquery>
<cfdump var="#getArt#" top="10">

<cfform>
<cfgrid format="html" name="art" query="getArt" align="left" selectmode="edit">
    <cfgridcolumn name="artname" type="string_noCase">
    <cfgridcolumn name="isSold" type="boolean">
    <cfgridcolumn name="price" type="numeric">
    <cfgridcolumn name="aDate" type="date">
</cfgrid>
</cfform>

CF 9 CF grid UI - In CF install web root

While I try to run the code from IIS web root. I got follwoing JS error in Firebug. I know it is because of JS,CSS file path issue.

"ColdFusion is not defined
 ColdFusion.Ajax.importTag('CFGRID');
 http://localhost/cfgridNewDataType.cfm at Line 20"

I imported the JS, CSS file paths using cfajaximport.

<cfajaximport scriptsrc="http://localhost:8500/CFIDE/scripts" csssrc="http://localhost:8500/CFIDE/scripts/ajax" />
<cfquery name="getArt" datasource="cfartgallery">
select ARTID, ARTNAME, DESCRIPTION, ISSOLD, PRICE, CURRENT_DATE aDate 
from ART 
</cfquery>
<cfdump var="#getArt#" top="10">
<cfform>
<cfgrid format="html" name="art" query="getArt" align="left" selectmode="edit">
    <cfgridcolumn name="artname" type="string_noCase">
    <cfgridcolumn name="isSold" type="boolean">
    <cfgridcolumn name="price" type="numeric">
    <cfgridcolumn name="aDate" type="date">
</cfgrid>
</cfform>

After did sorting in a column I found below UI issue. x-grid3-sort-icon pointing to /CFIDE/scripts/ajax/resources/ext/images/default/s.gif instead of http://localhost:8500/CFIDE/scripts/ajax/resources/ext/images/default/s.gif

CF 9 CF grid UI Issue

Image path of CF Grid UI Issue

 

Is it Issue? I am not sure, May be I missed some argument.

ColdFusion 9 Released

ColdFusion9 No Comments »

I got a new lover ;) yes  ColdFusion 9 aka Centaur released.you can download here & enjoy new features.

Source : @coldfusion

Read more...

Cross site scripting in Coldfusion

ColdFusion9 4 Comments »

Today I was trying to play with galleon (open source forum by Raymond Camden). I just installed in my CF9 web root. I noticed two things those are worth enough to share as a blog entry.

First thing, I got a error while I configured in CF9.

Second thing, I tried to embed YouTube video code in a post, but got object, embed html tag replaced with InvalidTag string.

Read more...

Adobe Coldfusion bloggers

ColdFusion9 , ColdFusion No Comments »

Here I have mentioned list of Adobe CF bloggers info. You can get more information on CF 9 & CFB from these blogs.

Read more...

Powered by Mango Blog. Design and Icons by N.Design Studio
RSS Feeds