I have a view where I can see an object I placed in the rc at the top of the page. But I need it inside a cflayout in one of the tabs. When I click on the tab, the object is not found.
Is this the issue documented here regarding CF 8 and some of these EXT JS tags?
I would think that if you need the RequestCollection available, you're
going to have to go through a CB handler to instantiate an Event. So
the source for cflayoutarea should be something like
index.cfm?event=admin.clientDetail&clientID=#clientID#
And then in admin.clientDetail, you'd suppress the layout, grab the
data you need, then user renderView to return the html/js you need for
cflayoutarea.
Gave this a go and have not been able to fit it together. The source
of the layoutare is an event like suggested, but how will that make
the rc available to use renderView() in the layout area. I can use
renderData to return the data via the ajax call, but have not been
able to determine how I can get the view in.