Re: [flexcoders] Flex connection to Oracle 10g PL/SQL

2008-10-22 Thread Juliano Mendes

No need server side language. You can enabled Oracle EPG (Encapsuled PL/SQL 
Gateway) and XDB (XML Database) in your Oracle database and connect Flex to 
Oracle using a HTTP Service request to access directly a Stored Procedure and 
send a XML file back to Flex.

Good Luck!

Atenciosamente,

Juliano Mendes
Flex Pernambuco




Wed, 22 Oct 2008 09:40:51 +0100, Tom Chiverton [EMAIL PROTECTED] escreveu:

 On Tuesday 21 Oct 2008, tphilp74 wrote:
  Just began looking at Flex 3. Was wondering how do you go about
  running a Flex app having it connect to Oracle
 
 You'll need a server-side language of some sort.
 
 -- 
 Tom Chiverton
 Helping to confidentially build principle-centered compelling granular 
 front-end experiences
 
 
 
 
 
 This email is sent for and on behalf of Halliwells LLP.
 
 Halliwells LLP is a limited liability partnership registered in England and 
 Wales under registered number OC307980 whose registered office address is at 
 Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A list 
 of members is available for inspection at the registered office. Any 
 reference to a partner in relation to Halliwells LLP means a member of 
 Halliwells LLP.  Regulated by The Solicitors Regulation Authority.
 
 CONFIDENTIALITY
 
 This email is intended only for the use of the addressee named above and may 
 be confidential or legally privileged.  If you are not the addressee you must 
 not read it and must not use any information contained in nor copy it nor 
 inform any person other than Halliwells LLP or the addressee of its existence 
 or contents.  If you have received this email in error please delete it and 
 notify Halliwells LLP IT Department on 0870 365 2500.
 
 For more information about Halliwells LLP visit www.halliwells.com.
 
 
 
 --
 Flexcoders Mailing List
 FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Alternative FAQ location: 
 https://share.acrobat.com/adc/document.do?docid=942dbdc8-e469-446f-b4cf-1e62079f6847
 Search Archives: 
 http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups Links
 
 
 
 
 
 
 


[flexcoders] MasterTextInput - Open Source

2008-10-16 Thread Juliano Mendes - Flex PE
Guys,

   I developed a component for Flex called MasterTextInput. Fully Open
Source project and created on Google Code.
The MasterTextInput extends from standard TextInput class with new
features and facilities implemented to help us in our day-to-day.

   Below the list of features already developed in this version v0.1:

== AUTO CASE TYPE TEXT == 
Desc: Convert the text automatically typed in lowercase or uppercase.
Property: capsType ()
Values:
 - normal: No case [DEFAULT]
 - lowercase: convert in Lower Case
 - upercase: convert in Uper Case
 - init: Convert the first letter of each word in Upercase.

== AUTO TAB ON KEY PRESS ENTER ==
Desc: Automatically puts the focus on the next component when to pressed
the Enter key. Performs the same function TAB key.
Property: nextFocusOnEnter ()
Values:
 - True: Enable function [DEFAULT]
 - False: Disable function
Events:
 - EnterPressed: Shot by pressing the ENTER key. It can be used
for customized implementations.

== AUTO RESTRICT ==
Desc: Restrictions on input of text already implemented.
Property: onlyRestrict ()
Values:
 - None: Do not place restrictions [DEFAULT]
 - Number: Accepts only numeric characters
 - Alphabetic: Accepts only text
 - AlphabeticNoSpecial: Accepts only text, but does not accept
special characters like: @ - / *  ...
Note: For customized restrictions continue using the property Restrict
().

== EMBEDED VALIDATORS ==
Desc: Embedded Validation. Will no longer be necessary to create
Validators for each field. Already there is the automatic validations
only setting a property of MasterTextInput. Validation of the messages
are automatically translated into Portuguese / English / Spanish without
the need for any kind of implementation.

Property: validator ()
Values:
 - none: No automatic validation [DEFAULT]
 - email: Validation of E-mail
 - phone: Validation of Phone Number
 - number: Validation of number
 - string: Validation of string
 - date: Validation of date
Remarks:
 - All specific properties to each validator also exists in
MasterTextInput. Eg. FormatInput validator to date, MaxValue for Number,
MaxLenght for String and so for all other properties patterns of
validators.
 - There is a public object called currentValidator he will always
point to the current validator of his MasterTextInput, so you can track
any changes of the validator dynamically, linking it to an Array for
grouped validation and any other function.
 - The properties Trigger () and triggerEvent () exist in
MasterTextInput in order to define when will be triggered the validation
of the field. The default is to quit when the focus of the component.

Property: ValidationLanguage ()
Desc: This property will be the language that will be displayed
Validators messages.
Values:
 - Portuguese: All messages are in Portuguese for validation.
[DEFAULT]
 - English: Messages of validation in English.
 - Spanish: Messages of validation in Spanish.
Remarks:
 - You can change the language dynamically just setting this
property by Action Script.

== CLEAR BUTTON ==
Desc: Will display a button with an X icon. When click the button, the
field will be cleared.
Property: showClearButton ()
Values:
 - True: Display button [DEFAULT]
 - False: Do not show button

== Deployments in progress for version v0.2:
* Auto formatters
- Format DATE
- Zip Format
- Format Phone
- Custom formatting: ###.###.##-##
* Undo and Redo 
* Prompt Label

I would ask those who are interested, make the download from the site of
the project.
Please tests and contribute with new ideas to be implemented.

Project website: http://code.google.com/p/mastertextinput/
My site: http://www.flexpernambuco.com.br/
suggestions to: [EMAIL PROTECTED]

I hope you enjoy!

Regards,

Juliano Mendes