I presented the opening keynote at
Spring <br /> this morning. The first half of the presentation covered Flex Data Services, I demonstrated practical benefits of using Flex Data Services (now known as LiveCycle Data Services) as opposed to just client initiated AMF calls via Flash Remoting. Less than half of the almost 300 attendees had any Flex experience, and less than a handful had any understanding of Flex Data Services, so I spent more time on this segment than I had initially planned.
Next came a ColdFusion Scorpio sneak. I demonstrated image manipulation, presentation creation using <cfpresentation>, server monitoring, PDF form integration, and ... some very cool Ajax controls which really got the crowd buzzing. Some of the demos included:
- An HTML (non-Flash) version of <cfinput type="datefield">
- HTML grids created using <cfgrid> that loaded data via asynchronous calls back to ColdFusion Components.
- Auto-suggest implemented using just <cfinput>, with both hardcoded lists as well as dynamic lists returned from asynchronous CFC method calls.
- A rich tech editor embedded by simply adding richtext="true" to <cftextarea>.
We'll be posting more details in the coming weeks and months, stay tuned!
I have read several blog reviews of your keynote. Kudos! for once again evangelizing the populous on the powers of CF. Now we just have to get all the kinks worked out of Scorpio and get it on the block so we can make use of these new features.
I am grateful for the rich text control. This is a welcome addition to CF.
My understanding is the control is based on the popular FCKeditor. If so, why wasn't KTML chosen?
KTML is a product by InterAkt, an Adobe company now. It is in my opinion, a better product. Would you please shed some light on this?
Dan Wilson
What are the chances you;d be able to configure which RTE you could use?
Scott, I was not involved in that decision, so can't comment on what was picked and why. We plan to make it possible to configure the editor functionality, but I highly doubt we'd let you switch which editor is used. But, ya never know.
--- Ben
- When we made the decision Interakt had not been acquired by Adobe (we've been working on Scorpio for 2 years... we're not just whipping this stuff up last week!)
- FCKEditor was and is ubiqutous and known to work well with CF
- Frederico Caldeira Knabben, the copyright owner of FCKEditor was and continues to be incredible to work with and dedicated to the success of the FCKEditor and our use of it
That was enough for me. I hope you all like that feature, but I have news for you, its just a very small piece of a very very large puzzle!
Cheers,
Jason
(The still relatively unknown and extraordinarily busy Product Manager for ColdFusion)
Great presentation yesterday. I am very excited about Scorpio.
Quick question--are Flash forms going to continue to be supported in CF8? Is there any chance there might be a Flash form RTE? That is something we would love to have.
1) How will RichText in CF8 and RichText in Flex be the same/different? I'm in need of a WYSIWYG solution in CFFORM flash forms and/or Flex.
2) Will CF8 flash forms support File Upload? Multi-File Upload?
I have an immediate need for:
1) A Flex form that has WYSIWYG editor (not just RichText basic like it is now) and file attachment fields.
Or
2) A CFFORM flash format form that does both.
I've been holding off going back to HTML solutions I've used for both of these in the past.
Don
Flash Forms are not changing in Scorpio, other than removing any AS language restrictions.
--- Ben
<cfquery name="slide" datasource="slidedb">
select * from slide_tbl
</cfquery>
<cfpresentation title="Presentation" >
<cfpresenter name="David" email="info@xxx.com" >
<cfoutput query="slide">
<cfpresentationslide title="#title#" duration="20">
<h3>#slide_title#</h3>
<p>#slide_content#</p>
</cfpresentationslide>
</cfoutput>
</cfpresentation>
Can we make custom toolbars on the fly? Docs & reference would suggest NO - which is very, very bad.
TinyMCE set up and configuration works so much better, especially controlling the toolbar dynamically.
I need to layout toolbars on the fly, and would like to use cftextarea - but if I can't I guess I'm sticking with TinyMCE
Also, I have a problem with some of my clients on a shared host environment. Since the FCKEditor config files are in the shared CFIDE folder which is not accessible on a shared host environment, I am at a loss as to how to provide a custom configurations across multiple hosts.
I appreciate the simplicity of the additional attribute for cftextarea for rapid development, however any toolbar customization that is needed based on user access levels, or administrative experience, (custom skins to fit site design, styles, templates, etc.) illustrates this is not a robust solution as needed for most designers/developers.
I was referred to a previous posting on per application settings [ http://www.forta.com/blog/index.cfm/2007/4/24/Scor... ] for mapping from within the application, but am unclear as how this might work for the rich text editor.
I would appreciate any ideas, suggestions, and hope of future development to address these concerns.
Thanks!