after form validation selecting option is not working properly - codeigniter

Please help me I am facing this problem when I click on submit button and my form rout to validation so after validation select option not working properly I used ajax for selecting option is there any buddy here to help me
It does not working after this validation when I remove it so its working
public function validate()
{
$this->form_validation->set_rules('sub_ctg', 'sub_ctg|callback_select_validate');
}

Related

Validation fails in tinyMCE editor

I am trying to implement Jquery Validate.js in my Create n Edit page.
Validation works fine in my create page but when it comes to edit page the real problem arises. If i try to check title field first for validation then the validation works but if i try to validate my Textarea first that has intregrated TinyMCe then the Jquery Validation does not work. The rules for Validation is same for create n edit page.

Invoking validation just after display the form JSF

I have a form where the user should be able to save even if there are validation errors.
These errors should be displayed once the user get into the form again.
So, i would like to invoke the validation of the entire form just after the form is displayed.
Currently, the validation is handled thru AJAX with several custom validators by using <f:validator/> and <p:ajax/> only when the user edits the field
Any suggestion is welcome!
Thanks!
An option would be to submit the form after it loads directly.
To achieve this you can use p:remoteCommand and something like jQuery('document').ready(function(){remoteCommandName()})

Devexpress MVC Submit button with client side validation

Is there anyway to do client side validations to work with Devexpress MVC submit button? In my scenario, the normal html submit button will work perfectly without firing the Controller action, but Devexpress button always fire the controller action, means its not actually a client side validation. Thanks
You can try this code:
Buttonsettings.UseSubmitBehavior = false;
Buttonsettings.ClientSideEvents.Click = "function(s ,e) { OnSubmit()}";

What is triggering Unobtrusive Validation check in asp.net MVC 3

I'm trying to figure out how unobtrusive validation works in asp.net mvc 3.
I would like to know what is triggering the validation check when I click to submit the form. How is the script jquery.validate.unobtrusive.js bound to the form submit event ?
I also would like to know how can I manually prevent/trigger this check.
jquery.validate.unobtrusive is a validator for jquery.validate. It is like a extension.
jquery.validate.unobtrusive implements all the events and jquery.validate use it.
You can look into the jQuery.validate.js file and see that it uses the submit of the
form.
// validate the form on submit
this.submit( function( event ) {
...
If you want to trigger the validation by yourself you can call
$("#myform").valid()

MVC 3 - AutoPostback with CauseValidation=false Behavior

I'm familiar with the method of submitting a form via a change event like or a checkbox's check event. Most articles explain how to find the first form using jQuery and invoke it's submit() method. However, I wish to submit the form but not cause validation so the back-end can perform other actions. In my case, I have a dropdown that a users changes. Depending on the value, the back-end adds/removes certain controls. The issue I'm runing into is that the validation prevents the form from submitting.
Q: How do I submit the form so it does not perform client-side validation?
Remove the validation just before the form is submitted - check out the answers here How do I remove jQuery validation from a form?
I think you can just turn the validation off by calling #Html.EnableClientValidation(false)

Resources