Paket | ga.util |
Schnittstelle | public interface IConnectionService |
Umsetzer | Wrapper, WrapperHostBase |
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Handbücher 9 |
Laufzeitversionen: | AIR 1.0, Flash Player 10.2 |
Methode | Definiert von | ||
---|---|---|---|
The connection was closed. | IConnectionService | ||
The connection was made, if success=false, the connection attempt failed
| IConnectionService | ||
Return the form's Active data, either from the Guide or the PDF. | IConnectionService | ||
Return the form's data
| IConnectionService | ||
Return the guides draft data including state information (Data is retrieved from the PDF if PDF is active. | IConnectionService | ||
Returns a field's value as an Object
| IConnectionService | ||
Return the requested property. | IConnectionService | ||
Set the data into the form - returns false if failed. | IConnectionService | ||
Sets a field's value, returns success true or false
| IConnectionService | ||
Set the property, returns false if the operation failed
| IConnectionService | ||
Performs the submit action based on the value of the Submit From
option in the Guide Design perspective within Adobe Digital Enterprise Platform Document Services - Workbench 10.0. | IConnectionService | ||
Submits the data to the server - return true if the submit was performed
- returns false if validations fail
| IConnectionService |
connectionClosed | () | Methode |
public function connectionClosed():void
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Handbücher 9 |
Laufzeitversionen: | AIR 1.0, Flash Player 10.2 |
The connection was closed.
connectionOpened | () | Methode |
public function connectionOpened(success:Boolean):void
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Handbücher 9 |
Laufzeitversionen: | AIR 1.0, Flash Player 10.2 |
The connection was made, if success=false, the connection attempt failed
Parameter
success:Boolean — the status of the open request
|
getActiveData | () | Methode |
public function getActiveData(callback:Function = null):String
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Handbücher 9 |
Laufzeitversionen: | AIR 1.0, Flash Player 10.2 |
Return the form's Active data, either from the Guide or the PDF. PDF requires a callback.
Parameter
callback:Function (default = null ) — the function to be called when an asynchronous operation is required to retrieve the data, as when the PDF is active.
|
String — String
|
getData | () | Methode |
getDraftData | () | Methode |
public function getDraftData(callback:Function = null):String
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Handbücher 9 |
Laufzeitversionen: | AIR 1.0, Flash Player 10.2 |
Return the guides draft data including state information (Data is retrieved from the PDF if PDF is active. PDF requires a callback).
Parameter
callback:Function (default = null ) — the function to be called when an asynchronous operation is required to retrieve the data, as when the PDF is active.
|
String — String
|
getFieldValue | () | Methode |
public function getFieldValue(som:String):Object
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Handbücher 9 |
Laufzeitversionen: | AIR 1.0, Flash Player 10.2 |
Returns a field's value as an Object
Parameter
som:String — the identifier of the field to retrieve the data from. eg. "EntityRoot.Client[1].Address.City" or for xfa - #som("form1.subform[1].Address.City")
|
Object — Object
|
getProperty | () | Methode |
public function getProperty(property:String):Object
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Handbücher 9 |
Laufzeitversionen: | AIR 1.0, Flash Player 10.2 |
Return the requested property. Sypported properties are: showSubmitButton = "true"|"false"
Parameter
property:String — the name of the property to retieve a value from
|
Object — Object
|
setData | () | Methode |
public function setData(data:String):void
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Handbücher 9 |
Laufzeitversionen: | AIR 1.0, Flash Player 10.2 |
Set the data into the form - returns false if failed. Throws an exception if the data is not valid XML.
Parameter
data:String — the content to be used as the current data
|
setFieldValue | () | Methode |
public function setFieldValue(som:String, value:Object):Boolean
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Handbücher 9 |
Laufzeitversionen: | AIR 1.0, Flash Player 10.2 |
Sets a field's value, returns success true or false
Parameter
som:String — the identifier of the field to retrieve the data from. eg. "EntityRoot.Client[1].Address.City" or for xfa - #som("form1.subform[1].Address.City")
| |
value:Object — the value to assign to the targeted item
|
Boolean — Boolean
|
setProperty | () | Methode |
public function setProperty(property:String, value:Object):Boolean
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Handbücher 9 |
Laufzeitversionen: | AIR 1.0, Flash Player 10.2 |
Set the property, returns false if the operation failed
Parameter
property:String — the name of the property to retieve a value from
| |
value:Object — the value to set the provided property with. Object types must match
|
Boolean — Boolean
|
submitData | () | Methode |
public function submitData():Boolean
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Handbücher 9 |
Laufzeitversionen: | AIR 1.0, Flash Player 10.2 |
Performs the submit action based on the value of the Submit From option in the Guide Design perspective within Adobe Digital Enterprise Platform Document Services - Workbench 10.0. This method returns true if the submission performs successfully.
SubmitFrom option | Behavior |
---|---|
Guide | Submits the Guide data to the Document Server. |
Displays the PDF rendition of the Guide. A user then clicks the appropriate submit button on the PDF form. | |
Printed Form | Displays the PDF rendition of the Guide. A user then prints the PDF and submits the form manually. |
Hosted Application | The submit button does not display on the last panel of the Guide. This option transfer control of the Guide submission to the hosting application. In this case, a user clicks a button within the hosting application, for example the Complete button within Adobe Digital Enterprise Platform Document Services - Workspace 10.0, to submit the Guide data. |
Boolean — Boolean
|
submitDataWithCB | () | Methode |
public function submitDataWithCB(callback:Function):Boolean
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Handbücher 9 SP2 |
Laufzeitversionen: | AIR 1.0, Flash Player 10.2 |
Submits the data to the server - return true if the submit was performed - returns false if validations fail
Parameter
callback:Function — the function to be called when the submit is an asynchronous operation (default)
|
Boolean — Boolean
|
Tue Jun 12 2018, 10:04 AM Z