tagged [forms]

Chrome ignores autocomplete="off"

Chrome ignores autocomplete="off" I've created a web application which uses a tagbox drop down. This works great in all browsers except Chrome browser (Version 21.0.1180.89). Despite both the `input` ...

Border Color for Editor in Xamarin.Forms

Border Color for Editor in Xamarin.Forms How can i make a border color for Editor in Xamarin.Forms? I used this [link](http://www.codeproject.com/Tips/845894/How-to-make-EditText-With-Border-and-Gradi...

27 Aug at 13:17

How to disable a input in angular2

How to disable a input in angular2 In ts `is_edit = true` to disable... I just simply want to disable a input based on `true` or `false`. I tried following: ``` [disabled]="is_edit=='false' ? true : n...

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

Is there a valid way to disable autocomplete in a HTML form?

Is there a valid way to disable autocomplete in a HTML form? When using the `xhtml1-transitional.dtd` doctype, collecting a credit card number with the following HTML will flag a warning on the W3C va...

31 Dec at 19:53

How can I get the file name from request.FILES?

How can I get the file name from request.FILES? How can I get the file name from request.FILES in Django? I tried using this

20 Aug at 21:4

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

Multiple radio button groups in one form

Multiple radio button groups in one form Is it possible to have multiple radio button groups in a single form? Usually selecting one button deselects the previous, I just need to have one of a group d...

2 Apr at 13:58

XamarinForms: StackLayout inside RelativeLayout is not filling the whole screen

XamarinForms: StackLayout inside RelativeLayout is not filling the whole screen I have this: But for so

16 May at 19:52

How to change application icon in Xamarin.Forms?

How to change application icon in Xamarin.Forms? I replaced all the images everywhere (by this I mean in drawable folders and all Windows Assets folders and iOS Resources folder), but it still shows m...

21 Jun at 13:26

Visual Studio 2017 fail to connect macOS virtual machine installed visual studio for mac and xcode

Visual Studio 2017 fail to connect macOS virtual machine installed visual studio for mac and xcode Below error I am getting when I am connecting the visual studio to my macOS. I am building an iphone ...

4 Apr at 13:46

How to get the containing form of an input?

How to get the containing form of an input? I need to get a reference to the FORM parent of an INPUT when I only have a reference to that INPUT. Is this possible with JavaScript? Use jQuery if you lik...

6 Mar at 15:7

C# get string from textbox

C# get string from textbox I am just a noob in C#, and I've got this question to ask you. I have here a form that asks for login details. It has two textfields: 1. Username 2. Password What I want is ...

24 Sep at 11:48

How to add form validation pattern in Angular 2?

How to add form validation pattern in Angular 2? I have a simple form that needs to validate if the beginning and the end of the input is not space. In HTML5, I will do this: What is the right propert...

19 Jul at 13:3

Display label text in uppercase using xaml in Xamarin.Forms

Display label text in uppercase using xaml in Xamarin.Forms I have an username label and need to view this as uppercase but this should only relate to the UI. The data (string) should be saved in the ...

Check if option is selected with jQuery, if not select a default

Check if option is selected with jQuery, if not select a default Using jQuery, how do you check if there is an option selected in a select menu, and if not, assign one of the options as selected. (The...

Submit two forms with one button

Submit two forms with one button I have HTML two forms, one that submits data upon entry to a database using PHP, the other directs the user to a paypal payment page, my problem is that the user would...

20 Oct at 23:23

How to delete user accounts in asp.net?

How to delete user accounts in asp.net? I have a Register page, I used the following [Walkthrough: Creating a Web Site with Membership and User Login](http://msdn.microsoft.com/en-us/library/879kf95c....

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

Have an "'Resource.Attribute' does not contain a definition for 'actionBarSize'" error

Have an "'Resource.Attribute' does not contain a definition for 'actionBarSize'" error Was trying to debug an empty app and got "'Resource.Attribute' does not contain a definition for 'actionBarSize'"...

15 May at 13:24

How to use JavaScript to change the form action

How to use JavaScript to change the form action My current code is as follows: Now I want to write a function to change the form action and method, when a condition is met. How do I write this code? F...

24 Oct at 10:13

Clear form fields with jQuery

Clear form fields with jQuery I want to clear all input and textarea fields in a form. It works like the following when using an input button with the `reset` class: This will clear all fields on the ...

10 Mar at 21:7

What is the equivalent of "none" in django templates?

What is the equivalent of "none" in django templates? I want to see if a field/variable is none within a Django template. What is the correct syntax for that? This is what I currently have: In the exa...

How to get current location or move to current location in Xamarin.Forms.Map

How to get current location or move to current location in Xamarin.Forms.Map Since the Map already shows the user location (with IsShowingUser) I just want to zoom to this location. Is this easily pos...

14 Apr at 17:54

Xamarin.Forms.Color to hex value

Xamarin.Forms.Color to hex value I have a Xamarin.Forms.Color and I want to convert it to a 'hex value'. So far, I haven't found a solution to my problem. My code is as follows: ``` foreach (var cell ...

18 Aug at 18:56