[flexcoders] LCDS "out of range sequence" and hibernate proxy errors

2007-10-26 Thread foobone9
Has anyone seen the following error: [Flex] Attempt to subscribe to out of range sequence: 4 clientId: 4AE7. I'm getting a boatload of these (w/ different seq numbers and client IDs) when there are multiple browsers connected to my server and I start recycling the browsers. I'm using LCDS 2.

[flexcoders] Re: routeMessageToService and routeMessageToClient

2007-10-29 Thread foobone9
A comment was added to the live docs example: http://livedocs.adobe.com/livecycle/es/sdkHelp/programmer/lcds/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Parts&file=messaging_config_5.html#258500 that corrects this. MessageService msgService = (MessageService)service; Should be: Mes

[flexcoders] Re: layout / scrolling issues

2007-12-26 Thread foobone9
I appreciate your posting as I was having the same (or a very similar) problem. I found a solution for my problems in this thread: http://tech.groups.yahoo.com/group/flexcoders/message/84056 By setting my HBox's minWidth="0" I got the scrollbars as I wanted. Putting the HBox inside of a canvas w

[flexcoders] Possible Data Service - Hibernate Assembler bug

2008-01-11 Thread foobone9
I have two different apps A & B. On startup both use the same DS fill method (and same fill parameters) to login and authenticate a user. The fill returns a managed User object (the logged in user). Both applications work fine on their own. However, I am having the following problem: I start appli

[flexcoders] Re: Events in AS3 gives Compile Error 1119

2008-01-16 Thread foobone9
> 1.)I have a customDataGrid object, which has metadata tag: [Event(name="menuClick",type="mx.events.MenuEvent")] > Use the string name: this.mycustomdg.addEventListner("menuClick", handleMenuEvent); OR Create the static string MENU_CLICK somewhere and call it with that.

[flexcoders] LCDS 2.5.1 DSprevMessageId Error?

2008-09-17 Thread foobone9
Has anyone seen the following message using LCDS 2.5.1: [Flex] Unable to find message for DSprevMessageId header in batch: xxx It happens when I'm creating new items and then modifying them via the Hibernate assembler. It doesn't seem to cause any problems locally; but when I deploy the app I do

[flexcoders] lcds / fds release collection problem

2008-03-24 Thread foobone9
I have a flex 2 application where you can open tabs (of canvases) that display and edit managed data using lcds 2.5.1. The retrieved data is somewhat encapsulated to the UI tab so when the tab is closed I want to release the data to minimize the client memory footprint and data management overhead.

[flexcoders] Re: lcds / fds release collection problem

2008-03-24 Thread foobone9
but instead will clear the collection. I have wondered if we > need a way to release the reference but leave the collection > unchanged... let me know if you think that would help in this case. > > > > Jeff > > > > ____ > >

[flexcoders] Re: LCDS Attempt To Request a page with Sequence

2008-03-28 Thread foobone9
I had this problem too. Our application is deployed to a limited number of users in a controlled environment so I shutoff the destination and channel timeouts (allowing the user to have an unlimited session time) and I stopped getting these errors. --- In flexcoders@yahoogroups.com, "Jeff Vroom" <

[flexcoders] Re: Problem in sorting XMLList collection as a dataProvider for the list

2009-03-09 Thread foobone9
mended code but it is not > recognizing internalPropList in line > var propList:Array = fields ? fields : internalPropList;. > > What exactly in internalPropList here? > Anyone has any idea, > Thanks all for your reply and help > > . > > > On Thu, Mar 5, 2009 a

[flexcoders] Re: LCDS Upgrade Problems

2009-03-09 Thread foobone9
From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On > Behalf Of foobone9 > Sent: Thursday, March 05, 2009 6:01 PM > To: flexcoders@yahoogroups.com > Subject: [flexcoders] Re: LCDS Upgrade Problems > > > That is correct; I have a destination who's source

[flexcoders] Re: LCDS Upgrade Problems

2009-03-09 Thread foobone9
Correction, the Hibernate version bundled with lcds - 3.2.5, not 2.5.4 (that is my Spring version) that I mentioned below. --- In flexcoders@yahoogroups.com, "foobone9" wrote: > > > I have things up and running now (mostly; I was thrown off a bit by > fetchObjectPropert

[flexcoders] Re: LCDS Upgrade Problems

2009-03-11 Thread foobone9
I have also noticed an issue when removing metadata sections from destinations in data-management-config.xml. The DataDestination, now getting its relationship information from the Hibernate mapping files, seems to only want to find the related destination from its full class name. Using an inde

[flexcoders] Re: 3D Cube interface

2009-04-09 Thread foobone9
http://www.alex-uhlmann.de/flash/adobe/blog/distortionEffects/effectCube/ --- In flexcoders@yahoogroups.com, "christophe_jacquelin" wrote: > > Hello, > > I am seaching a example of 3D Cube for an interface in Flex. > > Thank you, > Christophe, >

[flexcoders] Re: 3D Cube interface

2009-04-09 Thread foobone9
Check the blog for details: http://weblogs.macromedia.com/auhlmann/ --- In flexcoders@yahoogroups.com, Pedro Sena wrote: > > Are the source files available? > > Tnx > > On Thu, Apr 9, 2009 at 5:18 PM, foobone9 wrote: > > > > > > > http://www.alex-uhlman

[flexcoders] LCDS Push API Problem

2009-05-12 Thread foobone9
I have a custom assembler, that uses the interface approach, which returns an object with a XML property. When I open two clients and edit one through LCDS the other updates as expected. I then have server code which updates the same XML property and calls the newer DataServiceTransaction refre

[flexcoders] Re: Do we get any notification when user dissconnects from LCDS

2009-05-13 Thread foobone9
Create an object that implements the FlexSessionListener interface. Then set your object to receive the callbacks: FlexContext.getFlexSession().addSessionDestroyedListener(your Object); --- In flexcoders@yahoogroups.com, "Dharmendra Chauhan" wrote: > > Thanks Jeffrey, > > I am using RTMT cha

[flexcoders] Re: Validating items in DataGrids

2009-05-13 Thread foobone9
I would just create a custom item renderer who examines its own data and if it finds something it doesn't like it draws a red bordering using the drawing API in updateDisplayList. --- In flexcoders@yahoogroups.com, nhid wrote: > > Hi, > > I am also working on this problem, does anyone has an

[flexcoders] Re: Adding a child to a child...

2009-05-13 Thread foobone9
Either get the child (VBox) back from the canvas using getChildAt and call addChild on it, or add children to it before you add it to the canvas. --- In flexcoders@yahoogroups.com, Laurence MacNeill wrote: > > Let's say I want to add, in actionScript, a VBox to my Canvas. > > var tempVBox = new

[flexcoders] Re: Application Idea

2009-05-13 Thread foobone9
geni.com is a nice flex/flash family tree app. --- In flexcoders@yahoogroups.com, Brad Bueche wrote: > > Create a Family Tree. > > I mean the visual for the tree. > > Branches Nodes Leaves would be either text (Mother/Father, or Family Name) > OR > Branches Nodes Leaves would be thumb nail imag

[flexcoders] Re: Form with 3 Custom Components...

2009-05-14 Thread foobone9
You can just handle the click event from your button and in the handler function pull the necessary information out of your 3 custom components and then do what you want with it. --- In flexcoders@yahoogroups.com, Laurence MacNeill wrote: > > I have a form with 3 Custom Components on it. I wa

[flexcoders] Re: Form with 3 Custom Components...

2009-05-14 Thread foobone9
If you're that worried about it have your subcomponents implement a common interface to act as the contract between them and the parent which provides the api for the parent to pull the data out. --- In flexcoders@yahoogroups.com, Laurence MacNeill wrote: > > At 05:32 PM 5/14/2009, you wrote:

[flexcoders] Re: Flex to Air and remote coldfusion

2009-05-18 Thread foobone9
Does your AIR app have access to the same remoting-config.xml as the Flex app? --- In flexcoders@yahoogroups.com, "Scott" wrote: > > I've written an application in Flex now I'm working on an Air > application to connect to the coldfusion remoting services through the > original application. > >

[flexcoders] Re: AdvancedDataGrid, calling a sort on a column without a hidden header.

2009-05-19 Thread foobone9
Just sort the collection that the grid is bound to. --- In flexcoders@yahoogroups.com, "djhatrick" wrote: > > How do i duplicate the functionality of of sorting an advancedDatagrid > without a header release event. > > I'd like to sort my IHierarchicalCollectionView recursively. > > Thanks,

[flexcoders] Re: How do I do a sort on IHierarchicalCollectionView

2009-05-19 Thread foobone9
> = sort; > gc.refresh(); > } > > > > > > > --- In flexcoders@yahoogroups.com, "foobone9" wrote: > > > > Just sort the collection that the grid is bound to. > &

[flexcoders] Re: BlazeDS RemoteObject Performance

2009-05-19 Thread foobone9
I think you need to invest in Live Cycle Data Servies. --- In flexcoders@yahoogroups.com, Aldo Bucchi wrote: > > ( I copy this email from an internal communication I received ) > > > > Hello, > > I've found a serious performance problem on an application written on > Flex/AIR and using BlazeD

[flexcoders] Re: ADG/DataGrid prevent render even from firing immediately on propertyChange

2009-05-28 Thread foobone9
You might try enableAutoUpdate and disableAutoUpdate on ICollectionView, not sure if that has the desired affect or not. You could also put custom events in your model objects and manually dispatch collection events or call explicitly tell the grid when to update. --- In flexcoders@yahoogroups.

[flexcoders] Data Binding to Paged Data (w/ LCDS 2.5.1)

2009-01-15 Thread foobone9
Does anyone have any experience applying watch bindings to items that are paged and throw IPEs? I have a managed object that has relationships to other managed objects. I want to perform operations on the related items when they are pulled client side (from DGs or other view controls) and any tim

[flexcoders] Does ASDoc process metadata tags?

2009-02-12 Thread foobone9
I have classes that are marked with [Managed] and [Bindable] tags. Even though these objects do not extend eventDispatcher I can call dispatchedEvent, addEventListener, and removeEventListener on them. I assume this is because the compiler is wrapping the dispatch code around the object when it see

[flexcoders] LCDS Upgrade Problems

2009-03-05 Thread foobone9
I am upgrading LCDS from 2.5.1 to 2.6. I have quite a few assemblers that extend the Hibernate assembler and use the Spring factory. On start up the MessageBroker is croaking because of a Null pointer exception in HibernateAssembler line 211. Is the Hibernate assembler code provided in 2.6 as i

[flexcoders] Re: LCDS Upgrade Problems

2009-03-05 Thread foobone9
s.com [mailto:flexcod...@yahoogroups.com] On > Behalf Of foobone9 > Sent: Thursday, March 05, 2009 11:34 AM > To: flexcoders@yahoogroups.com > Subject: [flexcoders] LCDS Upgrade Problems > > > I am upgrading LCDS from 2.5.1 to 2.6. I have quite a few assemblers that > extend the

[flexcoders] Re: DataGrid ItemRenderers and display text highlighted search text.

2009-03-05 Thread foobone9
You'll want to work from the item renderer up; not from the data down: http://blogs.adobe.com/aharui/2007/03/thinking_about_item_renderers_1.html --- In flexcoders@yahoogroups.com, "Todd" wrote: > > Hello All (probably one for Alex H), > I know I've seen this implemented before somewhere around

[flexcoders] Re: Scale To Fit

2009-03-05 Thread foobone9
The developer's guide regarding layout & sizing: http://livedocs.adobe.com/flex/3/html/help.html?content=size_position_2.html --- In flexcoders@yahoogroups.com, "pliechty" wrote: > > Does Flex have a scale to fit mechanism? I would like to scale a component > to fit in the visible screen spac

[flexcoders] Re: Problem in sorting XMLList collection as a dataProvider for the list

2009-03-05 Thread foobone9
There is a nice example in the Sort class documentation: http://livedocs.adobe.com/flex/3/langref/mx/collections/Sort.html#compareFunction --- In flexcoders@yahoogroups.com, crazy developer wrote: > > Hi Thanks for replying > What does we mean by custom sort compare function, Can we provide any

[flexcoders] Re: LCDS Upgrade Problems

2009-03-05 Thread foobone9
r is in > the product. It in resources/samples/assemblers in > flex-messaging-dist-src.zip. > > Jeff > > From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On > Behalf Of foobone9 > Sent: Thursday, March 05, 2009 1:39 PM > To: flexcoders@yahoogroups.c