Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
76 views

How do you determine which validator failed?

I am working with a page and I am getting an Page.IsValid = false and I am trying to determine which control is causing the validation problem. If anyone can help, that would be greatly appreciated.
3
votes
1answer
784 views

Hunting down ModelState.IsValid errors

Is there a good way in asp.net MVC to trace ModelState errors? IsValid returns false when I submit my form even if there aren't actually any fields in it, or anything being validated. I looked at this ...
2
votes
2answers
628 views

Which controls triggered the Page.IsValid = false?

Two things: A) Is it possible to set the Page.IsValid (Is_Valid) property through Jquery so that I dont have to use the aspx validators? It is my understanding that the IsValid property is read-only? ...
2
votes
2answers
239 views

Exclude Control from Page.Isvalid

I have a few controls on a page that are all in the same validation group. Depending on certain conditions, one of these controls can be set to visible=false (and the user wont be able to input ...
1
vote
1answer
417 views

Recaptcha returning “The reCAPTCHA server is unavailable”

I'm using ASP.NET and plugging in the google Recaptcha user control successfully, when calling the IsValid method on it, it returns in its recaptcha.ErrorMessage property: "The reCAPTCHA server is ...
0
votes
2answers
31 views

Is there a way for django's ModelForm.is_valid to exclude certain fields

The title says it all. I have a ModelForm with several fields. Some of them should not be checked when I call form.is_valid(). However, I still want them displayed in the template so I don't think ...
0
votes
0answers
50 views

What is the proper way to disable NSTimer?

I am writing an app where the main view controller has several NSTimers that control different events. This works well except for a few oddball cases where the timers don't seem to get disabled when ...
0
votes
1answer
251 views

ASP .NET MVC 3 - RemoteAttribute override IsValid, access to the additional fields

Folks, i am creating a new attribute which inhetirs from System.Web.Mvc.RemoteAttribute. I would like to override the method IsValid for that the validation also works without the enabled JavaScript. ...
0
votes
1answer
98 views

Java Connection SQL isValid() not being recognized

I keep getting the error "The method isValid(int) is undefined for the type Connection" I am currently using eclipse galileo, have JRE and JDK 6, and have all appropriate .jar files available. i use ...
0
votes
3answers
84 views

django - forms hierarchy problem

I created a form for login, just like this: class LoginForm(AuthenticationForm): username = forms.CharField (label=_("Usuario"), max_length=30, widget=forms.widgets. ...
0
votes
2answers
262 views

Zend_Form disable populate before isValid()

Im not able to disable populating values in Zend_Form . I have my own form class. With hidden token element where I would like to dynamicaly setup random value every time the form is called (or ...
0
votes
2answers
200 views

form.is_valid() always returning false

Model class class Fuzz_Engine(models.Model): id = PositiveTinyIntField(primary_key = True) engine_name = models.CharField(max_length=16) version = models.CharField(max_length = 16) ...
0
votes
0answers
271 views

dojo form submit validation

I need a solution in dojo, on how to validate all elements in a form and display one generic 'alert message' instead of 'on screen' message for each user field. i was trying to use dojo.query to ...
0
votes
1answer
42 views

formset validates to True even if no data provided

here is how I'm testing formset: >>>data = ...
0
votes
3answers
1k views

Page.IsValid always return false

I have cause validation true on button. And I am checking the Page.IsValid in c# code. But its always returning false value?
0
votes
2answers
79 views

isvalid rss feed url

Before adding a rss feed url to the database, how can i check and make sure that it a valid rss url. via vb.net code. Please let me know.
0
votes
1answer
1k views

Page with multiple validation groups always returns TRUE for page.isvalid

I have two validation groups and two validation summaries on my page. Controls belong to either of two groups and there is a button for each group that performs the validation for each. I can't get ...