Parsley is an Application Framework that helps Flex/Flash developer create large scale enterprise applications. It uses the concept of dependency injection but has many extra features that helps reduce development time and complexity.
Questions tagged [parsley]
144 questions
4
votes
2 answers
How can I dynamically wire a Starling view with Parsley MVC IOC injection
I am using Starling with in a Flex app. The app is using Parsley framework and doing IOC on the views.
Starling is of corse not a regular Flash displayobject. Normally within a Parsley project if I want to dynamically inject when a view is created I…

mattwallace
- 4,132
- 6
- 43
- 77
3
votes
2 answers
Parsley: how to share instance between 2 Parsley configurations?
I got 2 parsley configurations for my 2 elements.
A.xml
…

Rudy
- 7,008
- 12
- 50
- 85
3
votes
3 answers
Parsley + Unable to validate Email address For Full Width Character
Trying to write on Email Validation Check for Full Width Character Parsley :-
JS Code:-
window.Parsley.addValidator('validateFullWidthCharacters', {
validateString: function(_value) {
regex =…

Rubyist
- 6,486
- 10
- 51
- 86
3
votes
1 answer
Validating Summernote textarea with Parsley
I've been using the Parsley validator for a while now and I'm really happy with it. Though, I've ran into a little bit of trouble, which I really can't figure out.
The problem is this: My textarea, which is replaced with Summernote, doesn't…

Mr. Elswood
- 31
- 4
3
votes
1 answer
Calling parsley.js method 'addError' on the instance directly
I have the following HTML source (generated by Django template engine):
When I try to apply…

Edgar Navasardyan
- 4,261
- 8
- 58
- 121
3
votes
0 answers
focus is not happening for the error filed in IE using parsley js validator. This works fine in chrome
For required filed on focus out triggers parleys validator and also iam listening for 'field:validated' parsley event.Inside this event handler i am getting back the focus to this error element.This is working fine for chrome ,but in IE focus is…

ranjan un
- 84
- 6
3
votes
0 answers
Validate using Parsley only on form submission
The Parsley custom validators are being called every time a key is pressed. When you for example have a login screen, you don't want to show the user whether they have typed the correct password while they are typing. Is there any workaround using…

Ewerkema
- 41
- 4
3
votes
4 answers
Robotlegs Vs Parsley
I am planning to start a new project in as3 and I want Dependency Injection in the project. I found that parsley and Robotlegs are two popular frameworks for implementing DI in AS3. Which is the best one among these two?
My main requirements…

Dhana
- 179
- 1
- 10
3
votes
4 answers
How to Fake a AsyncToken return in ActionScript 3
Using Parsley,
I have a service that I access through a
[Command(selector='list')]
public function getRssFeed( msg:RssEvent ):AsyncToken
{
return service.list() as AsyncToken;
}
when I point to the "Real" RssService, everything works as expected. My…

Brett
- 71
- 1
- 4
2
votes
1 answer
How can I inject a dictionary using parsley framework in as3?
In my parsley container, I'm instantiating an object 'A' that contains a Dictionary (flash.utils.Dictionary).
I would like to create this Dictionary using parsley and inject it to 'A'.
This dictionary pairs structure is: key=id of object 'B',…

forhas
- 11,551
- 21
- 77
- 111
2
votes
1 answer
Flex (Flash Builder 4) compilation with debug=false resulting in errors that do not occur when debug=true
We have a fairly large Flex application and our QA were getting random, but reproducible, errors that the Flex developers couldn't reproduce. Some of these errors were being thrown from the flash player debug version such as:
ReferenceError:…

vershun
- 23
- 3
2
votes
2 answers
How to Change Error Message CSS Style (Parsley)
This may seem like a spin off but the original question never got an answer and i hope i never loose points for this. So i'm using parsleyjs for my validation, awesome validation by the way but i don't like the way errors are displayed by…

Mueyiwa Moses Ikomi
- 1,069
- 2
- 12
- 26
2
votes
2 answers
custom parsley form validation not working
I have a form with one field that needs a custom validator for which I'm trying to use Parsley v2.2.0-rc1 and jQuery 2.1.4. I have confirmed that both jQuery and Parsley are loading (in that order) using my browser's developer tools to ensure I get…

behobu
- 21
- 1
- 4
1
vote
2 answers
Flex - ArgumentError: Error #2025: The supplied DisplayObject must be a child of the caller when using added swc file
I know already so many questions have been asked here on this error #2025 topic.
But, in my case, it is happening when trying to use a .swc file in a flex project.
I am trying to use one of my library project into another flex project by adding…

tomjerry
- 105
- 1
- 3
- 13