tagged [forms]

frame border width in Xamarin.Forms

frame border width in Xamarin.Forms I use `Xamarin.Forms`, I have `Image`. I want to Border with `Corner Radius` and `Border Width`. Can I do it ? I try to use `Frame`. It good but it has only `Border...

7 Mar at 18:28

How to bind list inside ListView in Xamarin.Forms

How to bind list inside ListView in Xamarin.Forms I have one ListView on my page having `ItemSource` as `List` as shown below: How c

How to add ID property to Html.BeginForm() in asp.net mvc?

How to add ID property to Html.BeginForm() in asp.net mvc? I want to validate my form using jquery but it doesn't have an `ID` property as of now how to add it to the form in asp.net mvc? I am using t...

18 May at 04:44

HTML Submit-button: Different value / button-text?

HTML Submit-button: Different value / button-text? I'd like to create an HTML form submit button with the `'add tag'`, however, the web page is in Swedish, so I'd like to have a different . That is, I...

14 Jul at 09:37

Disabled form inputs do not appear in the request

Disabled form inputs do not appear in the request I have some disabled inputs in a form and I want to send them to a server, but Chrome excludes them from the request. Is there any workaround for this...

7 Jul at 12:35

val() vs. text() for textarea

val() vs. text() for textarea I am using jQuery, and wondering if I should use val() or text() (or another method) to read and update the content of a textarea. I have tried both and I've had issues w...

13 Jan at 16:58

Xamarin.Forms PCL & ServiceStack 4.5

Xamarin.Forms PCL & ServiceStack 4.5 I have a Xamarin.Forms PCL project, profile 7. I'm trying to troubleshoot some errors coming up when I try to create a new instance of JsonServiceClient: Searching...

Keep values selected after form submission

Keep values selected after form submission Consider: On submitting the for

8 Jul at 01:13

CSS styling in Django forms

CSS styling in Django forms I would like to style the following: ``` {{ form.as_table }}

23 Apr at 21:28

adding onclick event to dynamically added button?

adding onclick event to dynamically added button? I am adding a button dynamically in html like below: On click of that button I want to call a Javascript function: ``` var but = document.createElemen...

22 Dec at 01:12

Can you require two form fields to match with HTML?

Can you require two form fields to match with HTML? Is there a way to require the entries in two form fields to match using HTML? Or does this still have to be done with JavaScript? For example, if yo...

20 Feb at 16:59

jquery disable form submit on enter

jquery disable form submit on enter I have the following javascript in my page which does not seem to be working. I'd like to disable submitting the form on enter, or better yet, to call my ajax form ...

8 Oct at 07:13

How to obtain form's inner width and height

How to obtain form's inner width and height As per title. I am writing a program that all components can adjust size automatically by form's size. When I using `this.Width` and `this.Height` propertie...

20 Jun at 09:12

Xamarin.Forms: Call to a API using ServiceStack throws exception

Xamarin.Forms: Call to a API using ServiceStack throws exception I have a local service made with ServiceStack and I want to call a method from my Xamarin.Forms application: When the debugger reaches ...

Cannot implicity convert type 'string' to 'System.Windows.Forms.ColumnHeader

Cannot implicity convert type 'string' to 'System.Windows.Forms.ColumnHeader I am new to Visual Studio 2010 C#. I already created a form. However, when I run the application there is an error occurred...

13 Oct at 03:24

Add Gradient background to layouts in Xamarin Forms visual studio

Add Gradient background to layouts in Xamarin Forms visual studio I am a newbie in Xamarin Forms, I create a ContentPage for Menu. I need linear gradient color at its background. But I can't find any ...

C#: showing an invisible form

C#: showing an invisible form I have the following code in C#: Despite the `f.Visible = false`, I am seeing a flash of the form appearing and then disappearing. What do I need to do to make this form ...

2 Mar at 13:59

Form position on lower right corner of the screen

Form position on lower right corner of the screen I am using c# WinForm to develop a sman notification app. I would like to place the main form on the lower right corner of the screen working area. In...

3 Mar at 18:9

HTML5 form validation pattern alphanumeric with spaces?

HTML5 form validation pattern alphanumeric with spaces? I have the following input tag in my html5 form: This works just fine checking if the company name consists out of alphanumeric characters. But ...

The $(TargetFrameworkVersion) for FormsViewGroup.dll (v7.1) is greater than the $(TargetFrameworkVersion) for your project (v6.0) xamarin

The $(TargetFrameworkVersion) for FormsViewGroup.dll (v7.1) is greater than the $(TargetFrameworkVersion) for your project (v6.0) xamarin the error is on visual studio 2017 and xamarin: > Severity Cod...

php form action php self

php form action php self I have a php form like this. ``` ">

28 Jul at 16:58

A good folder structure for Xamarin form projects

A good folder structure for Xamarin form projects Since I'm new to Xamarin forms, I'm not quite aware of For eg. I have a project which contains following files : 1. Network calling 2. Database handli...

xamarin forms what is the difference content page and content view

xamarin forms what is the difference content page and content view What is the difference between: - - - What I'm trying to do is to have some content that overlays the main content when an item is be...

25 Feb at 03:11

Why is <deny users="?" /> included in the following example?

Why is included in the following example? The `?` wildcard represents unauthenticated users while `*` represents all users, authenticated and unauthenticated. My book shows the following example of UR...

How do I customize the Forms Authentication cookie name?

How do I customize the Forms Authentication cookie name? I have 2 websites running on localhost in different ports. As browsers do not differentiate port numbers when sending cookies, my forms authent...

2 Sep at 21:59