Questions tagged [parsley]

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.

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…
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.
1
2
3
9 10