Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

18
votes
5answers
7k views

is there anyway to have a fieldset width only be as wide as the controls in them

it seems that fieldset defaults to 100% width of its container. Is there anyway that you can have the field set just be as big as the widest control inside the fieldset ?
16
votes
4answers
8k 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? Is there a way I ...
8
votes
2answers
229 views

Why do <fieldset>s clear floats?

Consider the following test case, in which a floated and an inline element are placed inside a <fieldset> versus a <div>: <!DOCTYPE html> <html> <head> <style ...
8
votes
5answers
16k views

Rounded corners on a fieldset

I noticed that the "fieldset" tag renders a rounded corner border on IE (it renders squared on the other browsers). <fieldset> <legend>My legend</legend> </fieldset> ...
7
votes
4answers
2k views

Is it possible to achieve a <fieldset>-like effect without using the <fieldset> tag?

I personally like the <fieldset> tag because of how it draws a box and puts the <legend> at the top of it, over the border. Like this. However, it was made to organize forms, and using ...
6
votes
6answers
4k 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 of related tables to ...
5
votes
3answers
1k views

Default CSS values for a fieldset <legend>

I'm trying to use a <legend> as a title inside a <fieldset>. In browsers other than IE, the <legend> is positioned on the top border of the <fieldset>, with the text perfectly ...
4
votes
5answers
388 views

How can I make a fieldset legend-style “background line” on heading text?

I'm attempting to style heading text similar to how your default legend text appears in fieldsets; that is to say, I'd like a strikethrough-like line to come up to, but not through, the text. I can't ...
4
votes
1answer
327 views

django admin uploaded file processing

Here's what I want to do, and I did not find something similar in my search so far. In my admin page, I have a Filefield in my model. The rest of the fields are all read only. I want to be able to ...
4
votes
2answers
2k views

How do I create custom fields like mobile number in customer registration form without modifying magento core files?

How do I create custom fields like mobile number in customer registration form without modifying magento core files? I tried but the mobile number is not saved in the DB I override the ...
4
votes
1answer
2k views

Fieldset implementation in Symfony forms

on the project I am writing with Symfony, there will be fieldsets in forms very often, so I would like to create a mechanism so that I can group fields by fieldsets and still use the __toString() ...
3
votes
2answers
200 views

Using exclude with Django fieldsets

So I'm trying to write a dynamic form for models that allow users with different permissions to do different things. What I would like is for the below code to function properly, so that ...
3
votes
4answers
149 views

What are the advantages of using the fieldset tag?

What are the advantages of using the <fieldset> tag? I don't really get what it is used for.
3
votes
1answer
3k views

Programmatically Creating fieldset, ol/ul and li tags in ASP.Net, C#

I need to write an ASP.Net form which will produce the following HTML: <fieldset> <legend>Contact Details</legend> <ol> <li> <label ...
3
votes
5answers
473 views

Is there a way to loop through all fields in a fieldset?

I would like to change the class for all the fields in a specific fieldset. Is there a way to loop through the fields in a fieldset?
3
votes
9answers
4k views

Which CSS tag creates a box like this with title?

I want to create a box like this with title: Can any one please let me know if there is a default CSS tag to do this? Or do I need to create my custom style?
2
votes
3answers
2k views

How to position the legend inside a fieldset with a border?

According to the several references on the web, it is not possible to position a legend. So it is suggested to wrap it with span: <legend><span>Foo</span></legend> Then we ...
2
votes
1answer
537 views

Adding two buttons next to an ExtJS ComboBox

I need to place an Add button and a Remove button next to an ExtJS ComboBox. It's critical for these three elements to be in a single line because I have to apply this to all other ComboBoxes in the ...
2
votes
3answers
370 views

Can any HTML element be styled as a fieldset/legend?

Using the display property, HTML elements become interchangeable from a styling perspective. This doesn't seem to be the case for fieldset and legend, however. Is it possible to style other HTML ...
2
votes
2answers
1k views

Fieldset contents overflow in Firefox

I am having a css issue with fieldset and wonder if you could help? I have a fieldset with width smaller than its content div's width. I want the fieldset to display a horizontal scroll bar as the ...
2
votes
1answer
234 views

Is using fieldset and labels in XHTML discouraged?

I heard there was fundamental lack of web-browser comprehension of those, and often IE6,7, opera would flounder trying to display them. Is that indeed true? Should those be avoided? And while we're ...
2
votes
2answers
3k 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>Connection ...
2
votes
10answers
4k views

Forms with multiple columns, no tables

How to position a complex form with multiple fields in line across the screen?
2
votes
5answers
2k views

Fieldsets and legends

Alright, I know how the fieldset/legend works out in html. Say you have a form with some fields: <form> <fieldset> <legend>legend</legend> <input ...
1
vote
2answers
50 views

Is it possible to change a fieldset's background-color on input:focus?

Is it possible to have the background-color of a form's fieldset change when the cursor is inside any of that fieldset's text fields? I assumed this might work, but it doesn't: fieldset ...
1
vote
1answer
93 views

Fieldset with two different shapes in Firefox 9.0.1?

I have just noticed something really odd, which I believe might be a small bug in Firefox 9.0.1. Have a look at the screenshot below. It shows Chrome 16 and Firefox 9.0.1 and how they render a ...
1
vote
1answer
106 views

how to access fieldset in usercontrol.ascx from codebehind of the main.aspx page?

actually i'm developing template using asp.net and c#. i have one panel which contain 2 fieldset in my usercontrol page. i wand to access these 2 fieldset from the code behind of the main.aspx page, ...
1
vote
2answers
87 views

HTML fieldset, center not working

I want to center a fieldset but I want it to be resize due to its content, so I added the attr display: inline-block; to the style, which makes that, but it moves the fieldset to the left... I was ...
1
vote
2answers
108 views

Programmatically deselecting a radio button by clicking its label

I was looking for a script that allows me to deselect a radio button. I found one on SO and implemented it here... http://jsfiddle.net/sparky672/YFsVK/1/ As you can see it's working great but only ...
1
vote
1answer
113 views

extjs remove field from column in fieldset

With my fieldset, I have a column layout containing different components. Based on the value of the combo, I want to remove the textField from one column & replace it with a new combo. I have ...
1
vote
1answer
97 views

Removing space between fieldsets

I have a fieldset that contains a number of nested fieldsets that are dynamically added and removed. However, I want the nested fieldsets to be displayed similar to a form e.g. with not much space ...
1
vote
1answer
158 views

Printing fieldsets in firefox

I've been adding some new css to an existing project (using media="print") in the page header. It's going smooth and (for once!) IE is giving nice, expected results, but Firefox does not... The ...
1
vote
1answer
130 views

Django admin fieldset exclude or header field

I'm trying to create a new admin view that: 1. has a header of some kind 2. excludes 3 of my fields Fieldset gives me the header I want, but doesn't seem to support "exclude", and I have not been ...
1
vote
1answer
121 views

Zend Framework / Form / DisplayGroup / SetLegend problem

I have the following code in my 'Default_Form_Registration' class (inside _init method): $fullname = $this->addDisplayGroup( array('firstname', 'lastname'), ...
1
vote
1answer
241 views

serialize fieldset content of a form

this is my code: http://jsfiddle.net/michelejs/Pt6LQ/25/ I would to serialize only the fieldset name= cap1. So I tried to modify $('#result').text(JSON.stringify($('form').serializeObject())); in ...
1
vote
1answer
552 views

Arranging fieldset elements like a typical table-design

I'm trying to arrange the titles for 3 fieldset elements the same way a typical table looks, but I can't get it the way I want. This comes pretty close, however... <label ...
1
vote
1answer
166 views

HTML ext js fieldsets

Hi This is my first experience with ext js and I use ext js designer tool. I have created like 3 fieldsets each having different input format but same input for backend. Eg search by selecting ...
1
vote
2answers
525 views

HTML Fieldset content overflows at 100% height (Chrome)

I have a problem with the HTML fieldset element in Chrome. I want to have a fixed-height fieldset, and within it a scrollable div. Everything looks fine until I put a legend in - when I do so, the ...
1
vote
1answer
615 views

extjs: fieldset-change collapse icon

how to change the expand/collapse icon of a fieldset component? by default it's a inverted triangle arrow, I want to set it as "+"/"-"? use "itemCls"? thanks!
1
vote
2answers
146 views

Border around legend in form does not show

I have a simple CodeIgniter view that simply refuses to show the border around the form even though I have used the fieldset and legend tags. I don't believe the CSS is overriding this anywhere but ...
1
vote
2answers
608 views

fieldset legend text-align right bug in firefox

is there a way to align a fieldset legend in firefox to the right? I thought it was just my styles but apparently even with an example online the FF fieldset ignores the text-align: right: ...
1
vote
1answer
183 views

Legend not displaying inline

Trying to set the <legend> of a <fieldset> to display: inline; to that the following <span> will follow on inline, but my CSS is having no effect. Here is a stripped down demo EDIT ...
1
vote
1answer
305 views

Different fieldset view problem between firefox and internet explorer

I am designing a page with divs in fieldset to create an effect like the page in url below. I can not insert the screenshot. Look at the left coloumn of fieldset boxes. If you surf the page with ...
1
vote
1answer
425 views

How come when floating a div inside a fieldset to the left, it actually floats right?

here is the html: <fieldset> <div> </div> </fieldset> here is the css: fieldset { float: left; width: 200px; } fieldset > div { float: left; ...
1
vote
1answer
459 views

Fieldset padding not working with inside divs

So I have the html code: <fieldset> <legend>Log On</legend> <div class="altregrow"> <label for="UserName">User name</label> ...
1
vote
1answer
210 views

IE7 acronym underline in a fieldset legend

I have an acronym inside of a fieldset/legend: <fieldset> <legend> <acronym>foo</acronym> </legend> </fieldset> In Firefox this gets rendered ...
1
vote
2answers
1k views

How can I get this fieldset border to wrap tightly around it's contents

I have a form with dynamically added fields (varying sizes). I would like to put a number of form fields in a fieldset, and have the fieldset border just large enough to contain all the fields. Here ...
1
vote
1answer
34 views

Is it possible to remove a FieldSet and then re-Add it again? How?

I got a screen that is shown according to what the costumer wants. So it depends on costumers needs. The problem is, I have to remove 3 FieldSets when I click on "Clean Fields" button. To re-add them ...
1
vote
2answers
715 views

Silverlight Fieldset Control

I've been missing the classic Fieldset of HTML in Silverlight and I couldn't find any solutions on the web. How do I go about building one?
1
vote
1answer
196 views

how can we make a div take width according to its content automatically

I want to create an effect like that of fieldset and label. When the headings change along the side, the width that the white background of the heading remains the same. If I can make the heading ...

1 2 3