Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

Ed_Solovey__ado
Ed_Solovey__ado
Offline

Badges

Badges
3

Accepted Solutions

Accepted Solutions
1

Likes Received

Likes Received
0

Posts & Comments

Posts & Comments
5

Discussions

Discussions
0

Questions

Questions
0

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by Ed_Solovey__ado
Customize the badges you want to showcase on your profile
Re: Many-to-one synchronization - Adobe LiveCycle 01-05-2009
Hi jmnas,When you say "edit accounts" and "edit transactions", are you editing attributes of those objects or are you modifying relationships between them, i.e. changing the account associated with a transaction?Also, it sounds like the problematic case is, you assign a new transaction to an account but the balance total for that account does not get automatically updated. Can you please verify that the collection field of the appropriate account is not getting updated? It is possible that the a...

Views

295

Likes

0

Replies

3
Re: LCDS: Reflect DB updates using SQLAssembler - Adobe LiveCycle 20-07-2007
Hi Robert,Here is an idea that may be able to save you the work andperformance hit of rerunning the fill periodically and maintaininga cache of previously returned values. When changes are made through Access, can you define atrigger that would insert the id of the item modified into achanges table? You could then define a server process that wouldperiodically query this table for a list of changed ids since thelast execution of this process. For each changed id the processwould then query the a...

Views

161

Likes

0

Replies

0
Re: LCDS: Reflect DB updates using SQLAssembler - Adobe LiveCycle 20-07-2007
Hi Robert,It sounds like something other than a Flex client is updatingyour DB, otherwise LCDS would have taken care of sending updates toall other subscribed clients. In your case, ideally whatever thisexternal event that is updating the DB would also trigger a call toDataServiceTransaction.updateItem() and all clients would beupdated. You would then not have to worry about updating clientsafter the fact. Is this possible for you?Ed

Views

147

Likes

0

Replies

0
Re: LCDS and paging - Adobe LiveCycle 19-07-2007
There are two types of paging supported by LCDS,1) Paging between server and client2) Paging between LCDS server and your data source To enable the first type of paging all you need to do is set and do not need to define fill methods with two extra Integerparameters. If you do want to enable the second type of paging then youadd the custom="true" property to the above config line and need todefine those extra fill methods. Note that this custom paging feature is available in thecurrent release o...

Views

150

Likes

0

Replies

0
Data Grid Problem - Adobe LiveCycle 19-07-2007
There are two types of paging supported by LCDS,1) Paging between server and client2) Paging between LCDS server and your data source An assembler method with two parameters (page number, pagesize) that Robert mentions is only necessary if you want to enablethe second type of paging. To do what you want, on the client side I would add thefollowing properties to the dataGrid:verticalScrollPolicy="{mx.core.ScrollPolicy.OFF}" // todisable the vertical scrollbarrowCount="10" // to show 10 rows at a ...

Views

131

Likes

0

Replies

0