Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.
-
Rich_Willmore #1
ASP:Panel ColdFusion equivalent.
Is there a CF equaivalent to the ASP:PANEL web form? In other words a tag to
wrap certain pieces of content whose visibility property can be manipulated on
the server at run time? Just trying to seperate business and display logic.
-- Rich
Rich_Willmore Guest
-
Combine Spry Tabbed Panel and Spry HTML Panel
I would like to maintain the presentation of the tabbed panel and utilize its ability to load content from a Spry Dataset, but I would also like to... -
Is there a Coldfusion equivalent to PHP's array_unique?
I'm trying to filter out unique array elements in Coldfusion MX 7. Is there any coldfusion function equivalent to PHP's array_unique function? ... -
PHP equivalent to MOD
Hi, I need to see if a number is divisible by 2. I don't see the math function "mod" in my PHP Functions reference manual. Is there another way... -
php equivalent of CGI.pm
I'm translating several old cgi scripts (that use CGI.pm) to php. CGI.pm has a series of conventient function calls for generating HTML code on the... -
ACT! Equivalent for Mac?
Does anyone know if there is a Macintosh program whose features are roughly equivalent? This PC software runs on VPC, but is fairly sluggish.... -
Rich_Willmore #2
Re: ASP:Panel ColdFusion equivalent.
Just wrote my own custom tag. Anyone have a better solution ??
CF_PANEL.CFM
<cfparam name="attributes.visible" default="true">
<cfscript>
if (NOT(attributes.visible)) {
thisTag.GeneratedContent = "";
}
</cfscript>
<cf_panel visibility="false">
Some Content
</cf_panel>
Rich_Willmore Guest



Reply With Quote

