tagged [forms]

jQuery function BEFORE form submission

jQuery function BEFORE form submission I am trying to fire a function using Jquery when the form submit button is clicked, but the function needs to fire BEFORE the form is actually submitted. I am tr...

19 Nov at 01:13

The definitive guide to form-based website authentication

The definitive guide to form-based website authentication > #### Moderator note: This question is not a good fit for our question and answer format with the [topicality rules](/help/on-topic) which cu...

how to have 2 data binding fields in one Xamarin forms label?

how to have 2 data binding fields in one Xamarin forms label? I'm working on an app in xamarin froms that gets data from a service. What I'm trying to do is make the first name and last name fields di...

5 Oct at 01:47

How to get a form input array into a PHP array

How to get a form input array into a PHP array I have a form like the one below which is posted to , and the user can dynamically add more with [jQuery](https://en.wikipedia.org/wiki/JQuery). ```

18 Sep at 22:11

How to create Password Field in Model Django

How to create Password Field in Model Django I want to create password as password field in views.

The SSL connection could not be established

The SSL connection could not be established I am using a third party library ([Splunk c# SDK](http://dev.splunk.com/csharp) ) in my ASP.NET core application. I am trying to connect to my localhost Spl...

Submit form on pressing Enter with AngularJS

Submit form on pressing Enter with AngularJS In this particular case, what options do I have to make these inputs call a function when I press Enter? Html: ``` // Controller // .controller('mycontroll...

Page Navigation using MVVM in Xamarin.Forms

Page Navigation using MVVM in Xamarin.Forms I am working on xamarin.form cross-platform application , i want to navigate from one page to another on button click. As i cannot do `Navigation.PushAsync(...

HTML Form: Select-Option vs Datalist-Option

HTML Form: Select-Option vs Datalist-Option I was wondering what the differences are between Select-Option and Datalist-Option. Is there any situation in which it would be better to use one or the oth...

23 Jun at 16:35

How to get a single value from FormGroup

How to get a single value from FormGroup I am aware that I can get the values of a form using However, I want to get a single value from the form. How do I go about doing that?

How to access HTML form input from ASP.NET code behind

How to access HTML form input from ASP.NET code behind I have a basic HTML form that gets inserted into a server side tag based on how many records exist in the database. This HTML form comes out just...

16 May at 19:30

How do you disable browser autocomplete on web form field / input tags?

How do you disable browser autocomplete on web form field / input tags? How do you disable autocomplete in the major browsers for a specific input (or form field)?

8 Apr at 23:1

Using the HTML5 "required" attribute for a group of checkboxes?

Using the HTML5 "required" attribute for a group of checkboxes? When using the newer browsers that support HTML5 (FireFox 4 for example); and a form field has the attribute `required='required'`; and ...

17 Mar at 16:17

addControl to FormGroup dynamically in Angular

addControl to FormGroup dynamically in Angular How can I add a FormControl to a FormGroup dynamically in Angular? For example, I would like to add a mandatory control which name is "new" and its defau...

jQuery's .on() method combined with the submit event

jQuery's .on() method combined with the submit event I've got a problem with `.on()`. I have multiple form-elements (forms with `class="remember"`), also I add another one `form.remember` using AJAX. ...

16 Feb at 13:52

Create a hyperlink using Xamarin.Forms (xaml and c#)

Create a hyperlink using Xamarin.Forms (xaml and c#) I basically want to create a hyperlink in Xamarin.Forms using the label class. Basically, I want to following link to take the user to google.com i...

Remove all items from a FormArray in Angular

Remove all items from a FormArray in Angular I have a form array inside a FormBuilder and I am dynamically changing forms, i.e. on click load data from application 1 etc. The issue I am having is that...

6 Jan at 19:30

Cast Binding Path so it recognises ViewModel property at Design-Time

Cast Binding Path so it recognises ViewModel property at Design-Time Ok this is more of an annoyance than a problem. There is no error ```

2 Dec at 00:50

Django Forms: if not valid, show form with error message

Django Forms: if not valid, show form with error message In Django forms, it can check whether the form is valid: But I'm missing what to do if it isn't valid? How do I return the form with the error ...

28 Nov at 20:28

How to override/modify the Content property of Frame to accept multiple Views in Xamarin.Forms?

How to override/modify the Content property of Frame to accept multiple Views in Xamarin.Forms? Here's the template code I have: ``` public class PopupFrame : Frame { public PopupFrame() { thi...

What's the difference between the ItemTapped and the ItemSelected event on a ListView in Xamarin.Forms?

What's the difference between the ItemTapped and the ItemSelected event on a ListView in Xamarin.Forms? A `ListView` in Xamarin.Forms has two events, which seem to be exactly the same: [ItemTapped](ht...

21 Oct at 15:41

Java.Lang.NoSuchMethodError: 'No static method checkBuilderRequirement

Java.Lang.NoSuchMethodError: 'No static method checkBuilderRequirement After updating to Xamarin.Forms 4.8 i get this error when application starts: ``` Java.Lang.NoSuchMethodError: 'No static method ...

19 Oct at 13:28

Reset the value of textarea after form submission

Reset the value of textarea after form submission 1. I want to send a message to userID=3 by going to /MyController/Message/3 2. This executes Message() [get] action, I enter some text in the text are...

15 Oct at 06:28

How to implement INotifyPropertyChanged in Xamarin.Forms

How to implement INotifyPropertyChanged in Xamarin.Forms I am implementing a cart in Xamarin.Forms. In my cart page there is a `ListView` with data. Each of the cell contains a button to select the co...

17 Sep at 10:12

How to implement Async Command

How to implement Async Command Although I have understood async programming with c# somehow, still don't get why async with void is not the better solution, then when I want to improve my Xamarin Form...

21 Aug at 05:18