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
1 answer
ManagedEvent with companion Event metadata
I'm trying to declare a customized ManagedEvent with ActionScript as follows:
[Bindable]
[ManagedEvents(names="message")]
public class ClassName extends EventDispatcher
{
.........
}
The problem came when sonar impposed to have a companion…

Selma BA
- 149
- 3
- 18
1
vote
1 answer
Need Help Hiding Datepicker On a No-Touch Device w/ Modernizr
I am currently trying to completely remove a datepicker element from the DOM, if the device being used doesn't have a touch screen. (.no-touch). And replace it with a select menu. Unfortunately my parsley validation is still showing from datepicker,…

Spizzy
- 11
- 2
1
vote
1 answer
Validate dynamically created field with parsley.js
I created a form using Backbone, Marionette and Parsley.js where I can add input dynamically.
But when I add a new field, parsley data-parsley-trigger doesn't seems validating field on focusout (I think because input were created after parsley…

Aure77
- 3,034
- 7
- 33
- 53
1
vote
1 answer
Issue trying to get a example Parsley app working
I'm getting started on a new project at I'm trying to get an Parsley example to work.
Here is the demo url: http://files.152.org/flex_examples/parsley/
View source is enabled
I have parsley registered in the app and can get the albums in the left…

metric152
- 422
- 4
- 16
1
vote
1 answer
Does anyone know what does this parsley warning mean? I get about 2,000 of them on Document.ready >>
Here is an image of the warning >> Parsely warning in console
I instantiate parsley like this:
$('form.parsley-survey').parsley()
THE WARNING:
"To be bound by Parsley, a radio, a checkbox and a multiple select input must have either a name or…

Josue Aceves
- 71
- 1
- 7
1
vote
0 answers
What does this selector mean a.listen("parsley:field:validated",this,this.reflow)?
I'm trying to understand how the Parsley.js works and in the code I've found these selector:
a.listen("parsley:field:validated",this,this.reflow)
Does somebody know what could it mean if the css selectors and elements are divided by colons? These…

user5922471
- 33
- 5
1
vote
1 answer
Parsley validate dynamic input field
I'm trying to validate an input field which is 'disabled' when the page loads, but it will, somehow, become visible and editable.
I excluded [disabled] from parsley, but when I'm trying to refresh constraints on that field, nothing is working. I…

Matei
- 372
- 1
- 8
- 21
1
vote
1 answer
limit maximum item on multiple file upload parsley validation
I want it to validate. If user selects more than 5 files than it should show a warning

Syed Fahad Khalid
- 47
- 8
1
vote
2 answers
parsley email or number into field
I am new to Parsley.
I want to validate a field is either an email address or 9 didgit number
html

Dan
- 1,295
- 2
- 22
- 46
1
vote
1 answer
Parsley Command Decoupled Result Handlers and Observers
I posted a question last night that after reading back sounded awful, so I deleted it and have come back to try again, this time properly.
I have a Flex Mobile App, that uses Parsley, everything works as expected but I am trying to do use a…

Shaine Fisher
- 315
- 1
- 3
- 20
1
vote
1 answer
meteor form validation using parsley
I have no clue how this is going, I have followed the steps on meteor parsley package.
I want the form not the get submitted if there is no valid input. though it show undefined when added for the url, but I want to restrict form from submitting…

hafiz ali
- 1,378
- 1
- 13
- 33
1
vote
1 answer
Form Tag Helpers Cannot Process '-' in Rails 4
I am trying to use Parsley for Rails 4 with Form Tag Helpers.
As said in the documentation
"Options" provide a way for custom attributes; However, Parsley uses the notation "data-parsley". Rails cannot interpret the "-" and application brings out…

james
- 515
- 4
- 14
1
vote
1 answer
How to manually remove UI Component from Parsley/Flex context?
How to manually remove view component from Parsley context?
Lets say I have one view and main application.
I have done the following but it does not work - view remains within Parsley context.
Main Application:
…

grass
- 176
- 1
- 12
0
votes
1 answer
Flex mobile using Parsley
I'm using Parsley in my flex mobile project. I have multiple destination services but I can't find more resources on how to add another destination service to config.xml file. The file is as below:

Zaur Guliyev
- 4,254
- 7
- 28
- 44
0
votes
1 answer
selector never works on parsley 3.0 framework, so command never gets called
I am trying to use selector(which to filter event when command Object recevind the event, but never get's called!! help here my pieces of code:
Inmy context file:
…

Oscar Wu
- 31
- 4