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

RedOctober57
RedOctober57
Offline

Badges

Badges
9

Accepted Solutions

Accepted Solutions
0

Likes Received

Likes Received
0

Posts & Comments

Posts & Comments
25

Discussions

Discussions
0

Questions

Questions
14

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by RedOctober57
Customize the badges you want to showcase on your profile
Re: Dear Adobe: We need more "Data Centric" examples and videos - Adobe LiveCycle 27-10-2009
Here is what I have that is not allowing the .autoCommit property to be "visible" in code complete, and it throws the error described in the previous post when the line is executed. ... import services.baa_data_svc.*; // I don't know if this line is necessary. With, or without, makes no difference. Error still occurs. protected function btnGo_clickHandler(event:MouseEvent):void { ... baa_data_svc.serviceControl. // Code hints don't show "autoCommit", but I can manually type it in (but it will error at run time) <fx:Declarations> <valueObjects:BAA_SBJ id="bAA_SBJ"/> <baa_data_svc:Baa_data_svc id="baa_data_svc" fault="Alert.show(event.fault.faultString + '\n' + event.fault.faultDetail)" showBusyCursor="true"/> <s:CallResponder id="getSBJsResult"/>"Enabled Data Managment" is set up on the BAA_SBJ data type.

Views

165

Likes

0

Replies

0
Re: Dear Adobe: We need more "Data Centric" examples and videos - Adobe LiveCycle 27-10-2009
I have 4 Data Types in my Data/Services panel, and I have enabled Data Managment on 3 of them, including the only one that I am currently trying to get working. The autoCommit property is still not available. (I am following the instructions on Sujit G's web site correctly as far as I can see)Mayank,I'm struggling with FlashBuilder 4. I would like to get started on building my projects, and not fiddling with FlashBuilder. I would like to hire you as a tutor. Is there a way I can contact you? I'm...

Views

166

Likes

0

Replies

0
Re: Dear Adobe: We need more "Data Centric" examples and videos - Adobe LiveCycle 26-10-2009
Hi Mayank,These instructions look fantastic. They cover the stuff I need to know how to do. I appreciate your efforts VERY MUCH and am following along dilegently. I'm trying to transpose your very good and detailed instructions into my own project. I'm stuck on the following line:In your example:productService.serviceControl.autoCommit = false;I'm transposing it to my project, which should read:baa_data_svc.serviceControl.autoCommit = false;Because I have a tag of: When I try to run the pro...

Views

169

Likes

0

Replies

0
Re: Dear Adobe: We need more "Data Centric" examples and videos - Adobe LiveCycle 21-10-2009
Also, I think it must he pretty easy... in the "Generate form" function, can you also include, along with all the fields and binding... a Commit and Undo buttons, along with the associated click events to make them function? The programmer could then just position these items on the form a BAM! done.Commit button = commit changed data to DBUndo = refresh text inputs from DB with original unchanged data (discard changes)

Views

169

Likes

0

Replies

0
Re: How do I commit changed data in a form? - Adobe LiveCycle 21-10-2009
This is only a partial answer. It commits data, but causes an error next time the user tries to open the form. I still need to know the correct way of Commiting data.

Views

88

Likes

0

Replies

0
Dear Adobe: We need more "Data Centric" examples and videos - Adobe LiveCycle 21-10-2009
Many of my data centric questions are unanswered (for days now). This tells me that no one in the community knows the answers, which is probably because FlashBuilder 4 and using it against a ColdFusionBuilder 1 server are still so "new". My customers are not impressed with bandwith sucking flashing, flipping, popping, spinning effects, with help hints. That's "kid stuff". They only want and care about lightning fast response time, tons of data at their fingertips, and reliability. They'll add th...

Views

1.0K

Likes

0

Replies

6
Drag & Drop data type onto a grid - Adobe LiveCycle 21-10-2009
Can anyone tell me, or direct me to the video that shows how one can drag a data type (or what ever) from the Data/Services tree onto an Advanced DataGrid, and then run the program, and the user can then edit the grid, add records, delete records and the changes will be committed to the back end DB? I can get my grid to populate, and I can edit the data in a cell, but that's it. No posting/commiting, no deleting etc.Also, the "Configure Return Type" button on the Data/Services panel is still not...

Views

362

Likes

0

Replies

0
DataGrid: Refresh one single row. - Adobe LiveCycle 20-10-2009
How do I refresh one single row in FlashBuilder DataGrid? I don't want to change the user's field sort order or selected row.

Views

521

Likes

0

Replies

0
Data Commit throwing an error. - Adobe LiveCycle 19-10-2009
This is the way I commit data: protected function btnCommit_clickHandler(event:MouseEvent):void { baa_data_svc.updt_SBJ(bAA_SBJ); data_chngd = false; } When I try to re-open the form after a commit (shown above) I get the error:undefined at mx.data::DataList/http://www.adobe.com/2006/flex/mx/internal::processSequenceResult()[C:\depot\DataServices\branches\dune_rc\frameworks\projects\data\src\mx\data\DataList.as:3043] at mx.data::DataListRequestResponder/result()[C:\depot\DataServices\branches\du...

Views

473

Likes

0

Replies

1
How do I refresh my textInput fields from the DB? - Adobe LiveCycle 19-10-2009
Here is how I load data into a form (it's a component, loaded and displayed as a popup): protected function panel1_updateCompleteHandler(event:FlexEvent):void { rec_obj_guid = parentApplication.grdSBJs.selectedItem.OBJ_GUID; getSBJResult.token = baa_data_svc.getSBJ(rec_obj_guid); }Commit button: protected function btnCommit_clickHandler(event:MouseEvent):void { baa_data_svc.updt_SBJ(bAA_SBJ); } I have an Undo button that simply needs to discard the changes made by the user, and repopulate TextIn...

Views

404

Likes

0

Replies

0