Ask a Question related to Coldfusion Flash Integration, Design and Development.
-
reya276 #1
CFGRID Properties
Is it possible to have links on a cfgrid (flash form) so that the user can
click on an specific row and be sent to a differnt page, if so, can anyone
provide a sample page of some form of syntax, I know that there is an HREF tag
but I tried it and it does not work like a link would.
reya276 Guest
-
ViewState properties and mapped properties don't work well togethe
I have a CompositeControl with two types of properties: 1.) Mapped Properties that map directly to a child control's properties (ex.:... -
Making Custom Control Properties Visible in Visual Studio's Properties Palette
I am learning how to use the System.ComponentModel class in VB.NET so that I can add my ASP.NET controls to Visual Studio .NET 2003. I have managed... -
<CFGRID>
I'm experiencing a strange behavior using cfgrid format="applet". If the selectmode="Edit" and I do specify a selectcolor, the field clicked on will... -
Illustrator properties vs FreeHand properties
I have to say that after playing around with Illustrator CS, FreeHand wins hands down as far as simplicity goes. I can't believe how many flipping... -
properties not showing in properties window at design time
I created a usercontrol using vb but the properties will not show in the properties pane however the properties show up in the intellisence list.... -
bradwood.com #2
Re: CFGRID Properties
Sorry I don't have time for detailed code sample, but this should work if you
set up a listener on your grid for the onRowPress event: Place this code in a
function which is called by the onload tag in the cfform
var listener:Object = {};
//put the controls in scope to avoid calling _root
var myGrid:mx.controls.DataGrid = myGrid;
listener.onRowPress = function(event):Void
{
alert('the onRowPress event has been fired. Details are contained in the
event object');
getURL("http://www.yahoo.com");
}
myGrid.addEventListener('onRowPress',listener);
bradwood.com Guest



Reply With Quote

