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
1
vote
2 answers
Injection model in Visual Component
I'm using Parsley framework. I'm trying to inject model in custom visual Tree component;
private var _model:Model
[Bindable]
public function get model():Model
{
return _model;
}
public function set model(value:Model):void
{
_model =…

nkukhar
- 1,975
- 2
- 18
- 37
1
vote
1 answer
Flex Cairngorm 3 Presentation Model Initializations
ok so I have a TitleWindow that I open up... and I have 6 states defined. I am using the Presentation model pattern for all of my views. I have discovered a frustrating nuance. When I tell my window to go to XXX state, the controls have to…

Jason Reeves
- 1,716
- 1
- 10
- 13
1
vote
1 answer
Parseley framework for Flex
I recently came across a framework for as3 called "Parsley". I haven't heard about this framework yet. Can anyone give me a quick overview about this framework. I have worked with Cairgorm and the Mate framework for as3 before. Also a comparison…

midhunhk
- 5,560
- 7
- 52
- 83
1
vote
2 answers
ModuleMessageInterceptor vs MessageInterceptor
I am developing an application in Flex using the cairngorm module library and Parsley.
Parsley documentation chapter 5 says: "Interceptors may come in handy when you want to decide whether or not the message should be passed to handlers".
When using…

user751037
- 21
- 3
1
vote
1 answer
How to escape double quote in parsley data-parsley-pattern?
I am using parsley for javascript validation. My current regex pattern is
data-parsley-pattern="/^[0-9a-zA-Z\!\@\#\$\%\^\&\*\(\)\-\_\+\?\'\.\,\/\\r\n ]+$/"
How to add double quote in my pattern. I have added \" to…

Pamba
- 776
- 1
- 16
- 29
1
vote
1 answer
Why is Parsley validating fields with display: none?
I am using parsley for validation of a form, and I am trying to set it up so when you click the next button you can't change pages unless the current one is filled out correctly. However it is validating fields that are included in a div with…

yaBoy
- 45
- 5
1
vote
0 answers
Trouble defining custom Parsley validation in AngularJS
I've inherited a project that uses Laravel and nodejs to run an angularjs app (right?)
The app makes extensive use of parsley validators, but I need one that validates against a typeahead list.
I just can't seem to figure out where to insert this…

jugglervr
- 315
- 1
- 14
1
vote
1 answer
Validating date input field in parsley js
For some reason, I don't have datepicker for the date input field and I want to allow to enter value in mm/dd/yyyy format only. I've used parsley js for validation.
Somehow, I've managed to validate email, image, digits field and i don't find built…

Sagar Gautam
- 9,049
- 6
- 53
- 84
1
vote
0 answers
Parsley.js, compare text fields values
Using parsley js, I would like to test if password and password_confirmation fields both match, but so far my below code fails.
security

Atef
- 175
- 1
- 9
1
vote
1 answer
How to validate negative, float numbers in parsley validation
I have a select box which option contain Negative numbers, floar numbers.
How do i validate that in parsely.

always-a-learner
- 3,671
- 10
- 41
- 81
1
vote
1 answer
GraniteDS with Parsley framework
I'm looking for an example about using GraniteDS for remote and
Parsley ( client-side ) for MVC / IOC.
The problem is that they both use the [inject] metadata...
So, if anyone has a solution for this ? Or a little example...
Thanks !

Georges
- 11
- 3
1
vote
0 answers
ParsleyJS: What to do about deprecated .pipe?
I'm upgrading jQuery from 2 to 3, running through the site with jQuery-migrate looking for and replacing deprecated or removed methods. However, one of my dependancies (Parsley.js) is apparently using the deprecated (but not removed)…

price84
- 11
- 6
1
vote
2 answers
Parsley custom validator - password with number, uppercase letter and special character
I'm using Parsley to validate a registration form. The client has now asked to force users to use at least one uppercase letter, number and special character. I'm wondering if it's possible to achieve this by creating a custom validator with…

Sean Turtle
- 53
- 7
1
vote
0 answers
Conditional Parsley JS validation on group
We are using Parsley JS for client side validation and I have following scenario which I need to validate.
The HTML part looks like this: