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

hohohuhu
hohohuhu
Offline

Badges

Badges
3

Accepted Solutions

Accepted Solutions
0

Likes Received

Likes Received
0

Posts & Comments

Posts & Comments
4

Discussions

Discussions
0

Questions

Questions
0

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by hohohuhu
Customize the badges you want to showcase on your profile
Re: Remote object call for each item in datagrid - Adobe LiveCycle 16-10-2007
Thank you, Chang. The thing is I'm not using Hibernate or anyJDBC. My data is actually come from mailbox. I'm developing anapplication that read bunch of mails from mailboxes and display indata grid.

Views

112

Likes

0

Replies

0
Re: Remote Object Problem - Adobe LiveCycle 16-10-2007
Have you try adding tag in your mxml ? and run yourapplication in debug mode.

Views

225

Likes

0

Replies

0
Re: image capture and send with post - Adobe LiveCycle 16-10-2007
import com.adobe.images.PNGEncoder;..... var canvas:Canvas;var snapshot:BitmapData = new BitmapData(canvas.width,canvas.height, true);snapshot.draw(canvas);var encBytes:ByteArray = PNGEncoder.encode(snapshot);// Now you got a byte array.Hope this helpNote : You will need PNGEncoder from flexlib project.

Views

154

Likes

0

Replies

0
Remote object call for each item in datagrid - Adobe LiveCycle 16-10-2007
Hi,I want to display large number of items in DataGrid (>30,000). Each items could take some time to retrieve allinformation for displaying. So I want to do lazy call to serveronly when particular row is in view. I'm currently usingRemoteObject to communicate with server side with single resultevent handler to get information of each row. Here is the codesnippet : quote:pubic class MyService { private var ro:RemoteObject; public function init() { ro = new RemoteObject("myDestination")ro.addEvent...

Views

366

Likes

0

Replies

2