Questions tagged [fieldset]

The fieldset tag is used to group related elements in HTML and XHTML documents. The fieldset tag draws a box around the related elements.

The fieldset tag is used for organizing and grouping related elements within a form. The tag when used the proper way makes HTML and XHTML documents more accessible to nonvisual browsers. When using the fieldset tag the browsers may display a box around the elements within the fieldset tag. The fieldset tag requires an end tag. You can also nest fieldset tags.

520 questions
0
votes
2 answers

Changing the name of filedset elements while cloning with javascript

I have a requirement in which I had to add a duplicate of the existing fieldset in a form. I'm able to achieve the cloning process successfully. But I'm not able to change the name and id of the filedset elements. It is the same as the first…
CARTIC
  • 573
  • 3
  • 14
  • 26
0
votes
1 answer

IE: element does not move when :hover makes another element visible

I encountered a strange problem in IE 8/7 and I have gone through hell (and back) to reach a minimal test-case that demonstrates the issue... Consider the following bit of HTML:
Louise
  • 1,451
  • 1
  • 18
  • 40
0
votes
1 answer

Disable grid panel with checkboxes

My requirement is that to disable a grid panel inside field set or grid rows on certain condition. The grid has more than 20 items and there should be a scroll bar to view all the elements of the grid. If I use disabled property of grid panel, then…
AJJ
  • 3,570
  • 7
  • 43
  • 76
0
votes
1 answer

Positioning the label of a checkbox in a fieldset

I have a registration form and used fieldset to order the input fields in two rows. Now I need to add a checkbox below them. Sure, I could do so with a div, but I want to integrate it into the fieldset. Here is an example fiddle. I need to add a…
bonny
  • 3,147
  • 11
  • 41
  • 61
0
votes
3 answers

White space issue with PHP

I am accepting a preset input from another .php file $Instructor=$_POST["Instructor"]; when I echo $Instructor, the OUTPUT is Dr. Doom (which is correct) When i pass it through a fieldset I only get the (Dr.) and not the (Doom). I need for the…
0
votes
1 answer

Legends overlapping border in IE7 and 8 but not 9

I'm having an issue containing legends within fieldsets for IE7 and IE 8. Basically I have a set of fieldsets with the following CSS: fieldset { padding: 10px; border-top: 1px solid silver !important; } and for the legends: legend { …
Rick Donohoe
  • 7,081
  • 6
  • 26
  • 38
0
votes
1 answer

how to Loop through mulltiple fieldsets?

I have this function to append to my form (which is a modal window): function appendAddressForm(name, line1, line2, phone, fax) { $("#addressForm form").append( "
" + …
SRy
  • 2,901
  • 8
  • 36
  • 57
0
votes
1 answer

CheckboxToogle ExtJS4

i have a fieldset with checkboxToggle in Extjs 4: { anchor: '100%', xtype: 'container', layout: 'column', items: [{ id: 'fieldsetNuovaTecnologia', columnWidth: .50, xtype: 'fieldset', title: 'Definisci Nuova…
Francesco Nigro
  • 479
  • 2
  • 8
  • 20
-1
votes
2 answers

CSS grid:

I started studying the CSS grid and I'm trying to build a form. I can't wrap my head around why the
Niels
  • 3
  • 3
-1
votes
1 answer

Custom fieldset Legend css

How can i recreate the classic behavior of a form with fieldset and legend
Text
using a div and a label?
I need the label…
-1
votes
1 answer

Position legend on left/right of fieldset

I would like to create an effect that looks similar to: ____________________ | | h | e | l | l | o | |__________________| when given an HTML…
razor_chk
  • 77
  • 2
  • 9
-1
votes
1 answer

Override fieldset disabled attribute without using Jquery(Only in HTML)

I have a complex form with many elements, most of which I need to disable conditionally (via AngularJS to precise, but this question primarily targets the HTML aspect). In order to avoid having to set a disabled attribute on every element, I…
-1
votes
1 answer

How to set two fieldsets side by side in html?

How would I set two field sets side by side to get something like this? What I am going for This is what I have so far: Fieldset reaches end of page
UsernameNotFound
  • 115
  • 2
  • 3
  • 8
-1
votes
1 answer

Incrementing fieldset IDs sometimes results in duplicates

I am trying to allow the number of input fields to be increased or decreased for several different sections. As demonstrated by the code below, with only 2 sections, each fieldset created should have a unique ID to allow it to be deleted. I have…
Dave
  • 5,108
  • 16
  • 30
  • 40
-1
votes
1 answer

CSS Select fieldset if contains a legend tag

Im creating a form using Fieldset for Formatting purpose. I would like to style those fieldsets, but I want to do different styles depending on if either the Fieldset contains a Legend or not. So, if the Fieldset contains a Legend tag, I want to…
Gekyzo
  • 41
  • 5
1 2 3
34
35