2
votes
9answers
401 views
Forms with multiple columns, no tables
How to position a complex form with multiple fields in line across the screen?
0
votes
1answer
149 views
Zend Form and nested fieldsets/containers?
I have a form. I have a single element that needs to be wrapped in a div or fieldset (for formatting). Then I have two groups of elements, including the above, that I want to wrap …
0
votes
1answer
23 views
html fieldset allows children to expand indefinitely
I want to put a scrollable box inside of a fieldset, but I've run into a quirk and I can't figure out my way around it. When you put your scrollable div inside of a fieldset, the f …
0
votes
2answers
67 views
Prevent jumpy fieldset when hovering in IE8
I have a fieldset inside of a fieldset. Each type of fieldset changes color when hovered over. Works great in Firefox, but in IE8 and IE8 in IE7 compat mode, when I hover over th …
0
votes
2answers
157 views
Titled frame panel for GWT (using FIELDSET and LEGEND html tags)
I'm trying to create a titled border frame in GWT, which results in this:
This can be done using HTML fieldset and legend tags, such as
<fieldset>
<legend>Conn …
1
vote
2answers
96 views
Example of a fieldset tag in HTML
Does anyone have good examples of how to use a fieldset tag in HTML?
0
votes
2answers
76 views
Validation on fieldset. The fieldset is inside the form and has inputs outside.
<form id="youtube-form" method="post" action="">
<label for="searchField" id="label-youtube-id">YouTube ID:</label>
<input type="text" id="searchField" na …
3
votes
4answers
1k views
Rounded corners on a fieldset
Hi,
I noticed that the "fieldset" tag renders a rounded corner border on IE (it renders squared on the other browsers).
<fieldset>
<legend>My legend</lege …
0
votes
3answers
68 views
can you have multiple formats within a fieldset legend
is there anyway to have a fieldset legend have different formats. For example, title would be big but sub title would be small?
Title: sub title
0
votes
1answer
50 views
Zend_Form Display Groups Problem
Here is a short snippet from my class extending Zend_Form:
$this->addElements(array(
$inputField1,
$inputField2,
$inputField3,
$submitButton
));
$this->addD …
1
vote
4answers
393 views
How to control the postioning of a fieldset with css?
I have the following code:
<fieldset>
<legend>
<strong>Personal Information</strong>
</legend>
<ul>
<li>
…
0
votes
2answers
371 views
Jquery Dynamic Form - Quick Question
I have a form and up the top it contains four different radio buttons - the rest of the form changes depending on which of these radio buttons are selected. Currently each 'part' o …
2
votes
3answers
1k views
Django and fieldsets on ModelForm
I know you can specify fieldsets in django for Admin helpers. However, I cannot find anything useful for ModelForms. Just some patches which I cannot use. Am I missing something? I …
0
votes
3answers
472 views
Vertical center an anchor tag within a fieldset
I am trying to vertically center an anchor within a fieldset using CSS but it always appears to align to bottom. Is there any tricks to this?
2
votes
5answers
745 views
Does the use of the fieldset HTML tag have meaning beyond grouping forms?
Usually, I've seen it with forms, but I've found it helpful to group related sets of data (eg when you have multiple tables on a page, using a fieldset around each table or group o …
