The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
5 views

Drupal 7 Gmap module - javascript error “Javascript is required to view this map.”

I am using GMap module in Drupal 7. I have generated the macro code, pasted into contact page, added macro filtering to Filtered HTML text format. It has worked correctly for about 3-4 hours and ...
0
votes
1answer
21 views

Submit form with html5 validation and jquery ajax

I have a problem with validation of my form because if I use required attribute in each element of form and press submit the form is not processed until it is fill out the form, but in my file I add a ...
0
votes
2answers
32 views

Html5 validation and jquery ajax

I have a problem with validation of my form because if I use required attribute in each element of form and press submit the form is not processed until it is fill out the form, but in my file I add a ...
0
votes
1answer
33 views

Angular - what is the difference between required and ng-required

What is the difference between required and ng-required (form validation)? Thanks!
0
votes
0answers
20 views

ios build using buildserver, picking correct codesign identity

Using hudson buildserver, building ios app,ipa for test & live environments. Code siging working fine with this code, when the developer checks in with correct code sign identities either for ...
0
votes
0answers
26 views

VBA - SetFocus error (Error 424: Object Required)

I've made a button to navigate to the next record, however, I also want to set focus on a text box (in my case "LastName") after the following record page loads up. The error is on ...
0
votes
1answer
28 views

Alfresco: Show “edit metadata”-popup after upload

We want the user to be able to edit the metadata after uploading a file to Alfresco. Ideally, we would also like this to work when uploading multiple files (for example through Flash or through ...
1
vote
1answer
15 views

tinymce bug in firefox with the required attribute

This is not a question, but an answer which I want to share with folk. I've just spent over four hours tearing my hair out on something which turns out to be a bug in either TinyMCE or Firefox. With ...
0
votes
1answer
73 views

PrimeFaces DataTable with required Radiobutton

I am using PrimeFaces DataTable with Radiobuttons inside a one wizard tab. Is possible to somehow set Radiobuttons like required? User shouldn't go to the next wizard tab until he will choose one ...
2
votes
1answer
40 views

“Object Required” when caling function in sub in VBA Excel

In my VBA program for excel; I have a function called "ParamCheck" which get four "double" variables, checks them and returns a message as "string". Function ParamCheck(airSpeed As Double, FCUvalue ...
0
votes
1answer
19 views

MVC automatically tags as required. How do I prevent/suppress automatic tagging for validation?

I have a model with int fields, such as UserTypeID. I am not using [Required] attribute. However, the MVC (3.0) generates HTML with required attributes, and the validation message kicks in when I try ...
0
votes
0answers
13 views

Automatic 'required' indicator for forms

I have this huge html form with lots of stuff that's required - I'm too lazy to go through and add a span tag - plus I might just forget to change something. I know there's a simple way with ...
2
votes
1answer
30 views

Show hint with required attribute by clicking

For example i have a input: <input type="text" id="username" required></input> And also i have a <button onclick="test_click()"></button>. function test_click(){ // ...
1
vote
2answers
184 views

ASP.NET Required Field Validator not working

Hi all I need a required field validator for my textbox..This is my textbox.. <asp:TextBox ID="txtTimeSlotGroupName" runat="server" AutoPostBack="false" ...
0
votes
0answers
43 views

simple_form dynamically required fields

I'm using simple_form with Rails to create a form whose attribute are required or not based on the value of my :kind attribute the user sets from a select box. I tried creating a jQuery script to ...
0
votes
3answers
100 views

JavaScript if check-box is checked not working

I have a website form where I have fields that I want to be required (with JQuery Plugin) only when the check-box is checked. So far I wrote JavaScript that works if the the check-box is not checked, ...
0
votes
0answers
78 views

ZF2: 'required' => false ignored for DateSelect element

In a Zend Framework 2 application, I have the following form in my controller action method: public function testAction() { $form = new \Zend\Form\Form('test'); $date = new ...
0
votes
0answers
32 views

Compile maven required projects in netbeans 7.3

I have 5 Maven projects in Netbeans 7.3, where one is the master and depends on the other 4. For example Master <- P2 <- P3 <- P4 <- P5. I want to know if there is a way to compile only ...
0
votes
1answer
44 views

Sign up page/form in Rails 3 not considering all fields required/mandatory

My sign up page has login. email, password, password_confirm and company fields . All of them are supposed to be mandatory but when i click on sign up it is not checking if any fields except password ...
-4
votes
1answer
38 views

HTML5 replacement input required tag for older browsers

I have already implemented the required tag into a selection of forms and input fields throughout a site. I was wondering if their was a script that would automatically perform the HTLM5 required tag ...
0
votes
1answer
39 views

Sometimes cannot connect to a remote DB2 database

I'm having some issues when trying to connect to a remote DB2 database. The strange thing here is that sometimes it's OK but sometimes not, i.e. I cannot always reproduce this behaviour. The error is ...
0
votes
1answer
47 views

Trying to make some required fields in a checkbox with Jquery

I an working in a fiddle (here). In this, I need to have some mandatory fields checked before I perform any calculations. There are 6 mandatory fields, so I am trying to check to see that all 6 ...
0
votes
0answers
18 views

I am coding a music app for iOS. The NowPlaying image moves around into different cells. How do I get it to say?

Here is the code for the image: - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { CustomCell *tappedcell = (CustomCell *)[songsTableView ...
0
votes
3answers
113 views

Input type file, required attribute not working

I am using the MVC 4 framework in my C# project. I made a page that add ads in my DB (path) and the actual image in a folder. The code works but I want to build a safety mechanism that prevents the ...
0
votes
1answer
77 views

hg push abort: http authorization required. i am pushing to my local bitbucket repository

i am trying to push my changes to my local remote repository in bitbucket. i have access to this repository. but when i do this, it is showing like this. it should show prompt for password but it is ...
0
votes
1answer
36 views

Form onClick running when Form required haven't been meet

Hey guys didn't really know how to word it, But even tho I've added required to my form input its runs the JavaScript onsubmit even failing the required when the buttons pressed and the forms blank. ...
1
vote
1answer
82 views

How to change default styles for IE required elements?

IE 10 is giving me undesired UI for input elements that include a required attribute. For type=text, it’s a tooltip and for checkboxes, a red border. I’ve figured out how to prevent such things in ...
1
vote
1answer
132 views

how to? with knockout js validations

I've started using knockout js validations with http://ericmbarnard.github.com/Knockout-Validation/ validation engine, and I'm not clear as to how to do the following: 1) Say I want to set a ...
1
vote
2answers
84 views

JSF difficulty with EL expression

I am facing a problem while using the property "required" JSF 2 + Prime Faces 3.5. The code below works perfectly: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" ...
0
votes
2answers
73 views

Error - “array required, but LinkedList<LLObj> found” in java

I AM NEW TO JAVA and i am trying to implement a simple Linked List code in java using java.util.LinkedList library and a dynamic data-type (class) The code is as follows - import ...
0
votes
0answers
57 views

h:selectManyListbox required attribute not triggered - JSF 2.0

The following code does not cause the component to be required: <h:selectManyListbox id="id" size="10" value="#{bean.emptylist}" required="true" requiredMessage="Required"> ...
0
votes
1answer
90 views

flex: how to validating multiple required fields

I can validating only one filed. <mx:Validator required="true" property="text" source="{name}" valid="vaildator(event)" invalid="vaildator(event)" /> thanks
-2
votes
3answers
52 views

Files/DLL's required for a C++ program on another PC [closed]

So if I wanted to distribute my program to someone else's PC that I made with C++, what DLL's are absolutely required to have on that PC to be able to run the program?
4
votes
1answer
168 views

C#: How can a required reboot be detected for windows 7

I am working on a project where several software and drivers are installed on a windows 7 pc. This shall work without user inputs. Now there is the question: How can I determine in this program if a ...
1
vote
0answers
74 views

Livevalidation - how to ignore hidden field?

I have a form with a dropdown showing 1 through 10. If user chooses 1-9, then a specific secondary paragraph field should show. And if the user chooses 10, then a different paragraph field should ...
0
votes
1answer
281 views

Dropdown menu option to add a 'required' class to another dropdown menu but remove the class for the other options when selected

I needed certain fields to be 'required' so have used jquery.validate.js and class="required" etc. Only problem is I have made the form extend when a certain option is chosen on a dropdown input by ...
0
votes
2answers
93 views

Submit a form with jQuery / Javascript without ignoring “required” tag

so I have the following form: <form action="register.php" method="post" id="register-form" name="register-form"> <input type="text" id="username" name="username" ...
0
votes
3answers
305 views

Constant expression required? (Java switch statement)

I have no idea what is causing this error. Me and my teacher went over it and can't find what was wrong. import java.util.Scanner; public class MailAssignment { public static void main(String [] ...
0
votes
1answer
130 views

How to make the first option of a select input give an empty value so that it is seen by validation as an empty 'required' field?

I have created a form which includes required fields validated by Jquery validate.js. Im looking for the simplest way to give an empty value to the first select option so that when a user does not ...
1
vote
2answers
199 views

Required input field gets border when value is empty and color is styled

Could you explain me this? Run this in Firefox: http://jsfiddle.net/eMa8y/24/ HTML: <html> <head> <script ...
0
votes
0answers
119 views

Magento Can't mass update attributes for Required Field Error

I’m hoping someone can shed some light on this: I’m using the search facility in Magento to find products with a certain attribute, and then selecting those products and using the “update attributes” ...
0
votes
1answer
15 views

How to manage required data for a table

I have a table that there are 3 required records that must be present in order for the application that uses this table to function correctly. For example, if this is a linked list tree table, in my ...
0
votes
0answers
18 views

Email Required - Error hen inserting new record

So I needed to update a record in one of my tables in my Db (in SQL management Studio) to 'allowing nulls' for an email. So in management studio I ticked the box for 'allow nulls', saved and updated ...
0
votes
1answer
33 views

How to set a string variable with zero from a text file in BeanIO?

My text file has 00 as state. I want to pass 00 to setState metod of Person object using BeanIO. But getting exception like Invalid state:Required field not set. It is accepting spaces but not zeros. ...
1
vote
1answer
72 views

Checking for Required Field in Custom Vaildator

I've got a custom validator set up to run on the elements of a composite component. It looks like this: <myproject:myComponent> <f:validator validatorId="customValidator" ...
-1
votes
3answers
219 views

Change a hidden input's value with jquery/javascript

I have some hidden input values that I would like to have be changed to a certain value once a user clicks on a link.
3
votes
1answer
251 views

HTML5 Required property changes <select> option fonts to Times New Roman on Chrome

When adding the required property to a <select> element, when we submit the form the select options show up using the Times new Roman font. I made a jsfiddle here. First click on the select but ...
0
votes
0answers
161 views

424 Object Required runtime error on attempting to fetch data from other workbooks and insert into master workbook

The purpose of this script is to fetch data / import data from a specific worksheet in All EXCEL Files in a single Folder. (all excel wordbooks are the same template which is sent out to multiple ...
0
votes
1answer
92 views

MVC: Make model parameter required only on certain views

After defining a parameter for a model [Required(AllowEmptyStrings = false, ErrorMessage = "No null")] [DisplayName("Name")] public string Name { get; set; } is it posible to change the properties ...
-5
votes
2answers
270 views

PHP - Multiselect require field if option is selected [closed]

This is part of a form that is sent via e-mail. When you select the option state the textfield state is required, if you don't it isn't, same for county and zip code. What I want is the php to ...

1 2 3 4