0
votes
1answer
45 views

Override partial class field in ASP MVC model

In my ASP MVC project, whenever I add a new table to my project two models are created. One under the Text Templating Transformation Toolkit (file w/.tt extension), and another outside this in the ...
0
votes
1answer
23 views

cakePHP Validations : one model for to forms in the same view

I have one view wich has 2 forms one for login and one for registration as following : signup.ctp //my view <div> <?php echo $this->Form->create("Tbluser"); ...
0
votes
1answer
14 views

List all validation rules for a certain model

I think I have duplication in validation of an attribute since I am getting the same validation error twice on email field. I suspect the some gems may enforce the same validations. Is there a way ...
0
votes
1answer
52 views

Check if record exists in Model Rails

I was wondering if i would need to create a custom validation for the following scenario. I have a Prediction model, in which a user submits their predicted scores for a set of football matches, they ...
0
votes
2answers
33 views

Validate a string to be one of two lengths

Is it possible to use ASP MVC's DataAnnotation to require a string to be one of two lengths? This example obviously doesn't work but I am thinking of something along these lines [Required] ...
0
votes
1answer
15 views

Matlab 'idpoly' Simulation

I have managed to estimate an 'idpoly' m for my time series Z(1,:) using the 'arx' command in Matlab. Unfortunately I do not know how to use this model m for anything else. How do I know input a ...
1
vote
0answers
77 views

Generate XSD with validation form ASP.NET Web API models

I have a ASP.NET Web API project with a few MVC models. Is it possible to generate XSD's from the MVC models? And, is it possible to keep the validation data annotations in the generated XSD's? If ...
1
vote
1answer
37 views

Custom validator does not load in Ruby on Rails

I am trying to apply a custom validator to my model issue.rb: class Issue < ActiveRecord::Base attr_accessible :description, :no_followers, :title validates_presence_of :title ...
0
votes
0answers
31 views

GraphCmd.exe : URI formats are not supported

I am trying to validate architecture through MsBuild in my CI server. I have a design model project(.modelproj) in my solution and I have changed the project file to load the ...
0
votes
1answer
54 views

Model Validation Not Working

I have following action to handle register $model=new User('checkout'); if(!empty($_POST['User'])){ $model->attributes = $_POST['User']; //echo '<pre>';echo ...
0
votes
1answer
38 views

Model Validation - Must have at least one of two attributes

I have a model in which two fields are validated, but only one of them is mandatory. I wrote the following validation, but it's not working: validates_presence_of :results, :on => :update, :if ...
2
votes
1answer
48 views

Implementing Ruby on Rails validation rules in database as opposed to hard coding in model file?

I have an application where I want to store all the database validation rules in the database because the admin needs to be able to change the validation rules from a GUI. Also the rules are expected ...
4
votes
5answers
284 views

How do I display a user friendly error when Spring is unable to validate a model's java.util.Date field?

I'm using Spring 3.1.2.RELEASE. I want to display an error message on my JSP if my date field isn't formatted properly. I thought I'd followed all the right steps. I binder a converter in my ...
1
vote
1answer
58 views

Combining validation syntax in CakePHP

Say I have a fairly typical, by-the-docs validation array and I want to keep those rules and add a specific validation rule for 8+ other fields. Original $validate: var $validate = array( ...
0
votes
1answer
91 views

rails + backbone reports that confirmation field in model is empty upon creation

I'm creating a user model via backbone. password field has a confirmation field. if i create a user via a console - it's created. but if i try to create a model via backbone it's an error - ...
15
votes
1answer
156 views

Best approach to model validation in PHP? [closed]

I've learned that there are often many ways to solve one programming problem, each approach typically having its own benefits and negative side affects. What I'm trying to determine today is the best ...
0
votes
1answer
120 views

Django error : one or more models did not validate:

I'm making an app from Netutus http://net.tutsplus.com/tutorials/python-tutorials/building-ribbit-with-django/ and I got this error when I ran syncdb. I did some research I found I had to put an ...
1
vote
1answer
70 views

Rails validate only in admin namespace

In my rails app i have two user-logic: user, and admin for example my routing for line_item is such: namespace :admin do resources :line_items, :only => [:edit, :update, :destroy] end ...
0
votes
1answer
59 views

Rails 3 basic validation not working with :prompt or :include_blank?

I have the following code in my view: <%= f.select :user_id, user_all_select_options, :include_blank => '--Select a name-----' %> It displays a list of users with --Select a name----- at ...
-1
votes
2answers
56 views

CakePHP not checking form validation

I'm writing a contact form and want to add some simple validation routines. The action for this page looks like this: public function contact() { $this->loadModel('Contact'); ...
0
votes
0answers
44 views

Rails model cross field validation

In Ruby on Rails application, I am trying to validate a field based on a method which takes as parameter another attribute of the record. Here is the scenario: In the Product model, I want to accept ...
1
vote
1answer
128 views

How to apply Conditional Validation “Required if another property is empty” in ASP.NET MVC?

Is there a method to implement a required attribute to my virtualPassword property, but with the condition if Password in null? Here’s my code. [DataType(DataType.Password)] ...
0
votes
2answers
87 views

How create a validation field from model that's not in the database table? With MVC4

I’m trying to create a validation field for a model that I don’t have in the table of the database. But I get this error "The column name 'editPassword' is not valid.” Here’s my code from the model… ...
0
votes
0answers
233 views

Forms and Validation in Model in Play Framework 2 Scala and Java

First of all, I do not have much experience in Play 2 or Scala, I am still just learning it. However, after reading the tutorials and doing quite a bit of googling, I am still rather clueless about ...
0
votes
0answers
95 views

validation error on update_attributes of a subclass (STI)

I implemented a signin/out machinery as Michael Hartl suggested in his tutorial (http://ruby.railstutorial.org/chapters/sign-in-sign-out). All worked perfectly: creating, deleting, updating user from ...
0
votes
2answers
54 views

Validate fields only if virt_attribute is false

I have such model: class Order < ActiveRecord::Base attr_accessible :**** :phone_number, :receiver, :shipping_id, :street, :totalcost, :user_id, :zip, :use_user_data attr_accessor ...
2
votes
1answer
76 views

Rails validate if radiobutton virtual attrib value is false

My model now is such: class Order < ActiveRecord::Base attr_accessible :**** :phone_number, :receiver, :shipping_id, :street, :totalcost, :user_id, :zip, :use_user_data attr_accessor ...
0
votes
2answers
89 views

Hitting a non-character key in an MVC3 required field fires validation?

I noticed that on a log in view, when a user enters in their email address, and quickly tabs to the password field, the MVC3 required attribute validation fires. The code I have is quite large, but I ...
1
vote
2answers
53 views

Is there a way in MVC3 to define data validation annotation for a group in a class?

I am new to MVC, recently I am working on the data validation, and I was wondering that in stead of giving a validation annotation for each parameter, is there a way that I can define validation rules ...
0
votes
1answer
36 views

Validation of specific attribute rails

I have a trouble validating one form, I have a Product model with several attributes, but I would like to make a method for validate the presence of almost one attribute of the following: Product.rb ...
0
votes
1answer
315 views

Rails 3 validation with unique scope conditional

I have for example this code in my model validation: validates :fb_user_id, :uniqueness => {:scope => :campaign_id} But can occurs that campaign_id has value -1 for different users, that ...
1
vote
1answer
126 views

Default value for a model validate rule

I have a question regarding default values for model fields, this problem has been driving me crazy for a while. To give you an example, I have a model with a status field that must be validated: ...
-1
votes
1answer
55 views

validates in rails

I have a model in which valid data. Everything works. In the form, I select as how to selct the option I choose I want to be valid also 2 fields validates_presence_of :is_ranking, :on => :update ...
0
votes
1answer
146 views

Partial View validation with composite view model

I have a screen with two forms. One allows login to the site, the other allows login to an ftp. The Login view is strongly typed with WelcomeScreenViewModel (combined models). Each form is a ...
0
votes
1answer
128 views

Which layer for model validation data annotations?

Following on from Model layer dependency on MVC attributes, is it a valid design choice to have a project that has the model classes and a separate project that defines the validation for each class? ...
0
votes
1answer
114 views

Jasig cas how to validate custom model attribute in view state

I have used jasig (3.5.1) cas sever and successfully configured.It works fine. my project have another requirement. I mentioned it below i need another login mechanism. it mean rather than using stand ...
3
votes
1answer
818 views

Yii: validation rules that always apply except one scenario

I know that you can have a validation rule that applies only for one scenario: array('username', 'exist', 'on' => 'update'), Now i would like to know if it's possible to do the opposite: a rule ...
0
votes
2answers
71 views

Using a single custom validation rule in different models

I'm trying to write my first project in CakePHP2 (I used CakePHP1 before) and I have the following problem. I have several models that require a custom validation rule for a field (personal numeric ...
0
votes
1answer
44 views

rails custom validator doesn't seem to work

I wrote a custom validator which sits in lib/readiness_for_completion_validator.rb: class DisruptionTimeValidator < ActiveModel::Validator def validate(record) # if ...
0
votes
2answers
85 views

In the Validation Rules of a Model in ASP.NET MVC 3, how to add error messages translated in more languages?

When I add validation rules to a Model class, an error message can be added to it, however only in one language; how can I add error messages translated in more languages for a single property? Have ...
0
votes
2answers
95 views

How do I create a validation that checks if at least one of multiple booleans is true?

I have a Rails 3.2 app that manages tasks. Here tasks are being assigned to users. The task model has multiple user variables that are booleans. How would I add a validation to say that at least ...
0
votes
1answer
76 views

Rails, warnings on Validations

hi all what i am trying to do is create a "soft" validation in other words instead of my failing the validation and not saving the data to the DB, id like to have the validation give a warning to the ...
1
vote
2answers
51 views

how to perform a complex validation check on related model prior to performing an action on a model?

I am building a simple Ruby on Rails app for problem management. I have a problem model as follows: class Problem < ActiveRecord::Base attr_accessible :active, :impact, :incident_number, ...
0
votes
1answer
67 views

CakePHP Negated RegEx not working

I am trying to enforce the first name of my model to be any character but numbers, but so far it's not working as expected. When I try this: public $validate = array( 'first_name' => array( ...
1
vote
3answers
230 views

Rails 3 - how to skip validation rule?

I have for the registration form this validation rule: validates :email, :presence => {:message => 'cannot be blank.'}, :allow_blank => true, :format => {:with => ...
0
votes
1answer
121 views

TDD/BDD and model validation

I keep wondering what is the most common way to handle model validations in BDD/TDD? Do you write a test for every single field in the model, and validate on that? Do you write a single validation ...
0
votes
1answer
85 views

Can multiple values be used in django a model validator?

I've got a model using a validation class called CompareDates for my model validators and I want to pass the validator two field values. However I'm unsure of how to use multiple field values in a ...
1
vote
3answers
179 views

Rails custom e-mail validator | Blacklist

Situation: I got a user model, which needs to be validated by a list of blacklisted e-mail addresses. The blacklisted e-mail addresses are located in an extra model called blacklist models/user.rb: ...
0
votes
1answer
110 views

ASP.NET MVC3 Model with list validation

Given model: public class RegisterModel { <!-- some properties --> [Required] public Dictionary<DayOfWeek, bool> DaysAtWork { get; set; } public ...
1
vote
2answers
96 views

In Rails, is it possible to repair model validation errors inside the model?

Let's say a model catches a validation error, usually this is handled by the controller, but is it possible to handle it automatically by the model? Practically I want to generate a unique id uid for ...

1 2 3 4 5 6