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

learn more… | top users | synonyms

0
votes
0answers
23 views

bind object to more than one fieldset in a form

Having one entity but two fieldsets, I found out that just one fieldset is populated when using the use_as_base_fieldset option. Is there a solution for that problem? First fieldset class ...
0
votes
0answers
22 views

How can I add HTML ''fieldset' into web GUI wireframe in Microsoft Viso [closed]

i tried several GUI shapes(including famous Sketch GUI shapes) in Viso , i want to put HTML fieldset into GUI schetch. anyone has any suggestion? or anyone can provide any fieldset for Visio GUI ...
0
votes
0answers
62 views

MySQL SELECT into Fieldset .. each Row = Another Fieldset

Have a user submitting a form http://bootply.com/61703 Posting the entries to a single MySQL table on a button submit Where each input = a column of one row.. And would like to load another page ...
4
votes
1answer
130 views

Nesting Fieldsets under Radio or Checkbox items: Zend Framework 2

I would like to create a fieldset under each radio/checkbox item. e.g Which animals do you like: [x] Cats [Fieldset of cat related questions] [ ] Dogs [Fieldset of dog related ...
0
votes
1answer
250 views

fieldset set value dynamically sencha touch 2.2

i am new for sencha touch. Please see code at below view.js Ext.define("blackbutton.view.Setup.UserProfile", { requires: [ 'Ext.form.*', 'Ext.form.Panel', ...
-1
votes
3answers
55 views

How to make two fieldset horizontally?

I have a form with two fieldset elements <form> <fieldset> </fieldset> <fieldset> </fieldset> </form> I need to make to be horizontally?
0
votes
1answer
32 views

How to target and remove a given fieldset within drupal

I am very new to drupal and have been playing around with lots of different modules and core features. I have now come to an issue I have been trying to solve for the pass 48hrs without finding the ...
0
votes
2answers
72 views

Placeholder text not appearing in textarea

I know someone here can help me out. I've looked at all the forums here on the same topic, but maybe someone can help my specific case. The placeholder isn't showing up for my textarea. Here is the ...
0
votes
0answers
93 views

Leave DateTime object Doctrine 2 empty (Null)

I've the following problem, I have a add- and edit-form for my users. There is a possibility to have an temporary user. So it is possible to set a startdate and enddate, but, when a admin leaves the ...
0
votes
0answers
47 views

Joomla textarea replaces newlines with __ (2 underscores)

Good day to you all, I am not exactly a Joomla Expert. Afters hours of searching the net for an answer, i decided to try it here. I am writing a simple Joomla component. In the view part I have a ...
0
votes
0answers
35 views

fieldset align fields in a div to the right

I am trying to align 2 fields in my fieldset Number2 and Date of Aprobation in the div with class container2, but It fails, I want these fields at the same level of Number and Date, and I want it to ...
1
vote
2answers
176 views

Select drop down being disabled after one use

I had to ask this question again because the first question I post wasn't specific enough to get an answer. Ok so I've been learning about web development and I'm currently a junior with this ...
0
votes
1answer
573 views

IE7: Styling Bootstrap form-horizontal fieldset/legend to look like control-group label

I'm building a criteria form using Bootstrap. Some of the form fields include checkbox or radio options, so I'd like to employ fieldset and the attendant legend to associate the options with their ...
0
votes
0answers
113 views

extjs4: for checkboxCmp of fieldSet

In extjs4 ,I use FieldSet in form,and i fonud the property 'checkboxToggle',when it is true the postion of fieldSet title will appear a checkbox,that is my expected UI. but this is not my exected:when ...
0
votes
1answer
110 views

Finding a fieldset using page-object

I'm trying to find a set of checkboxes, but I need to locate them in a fieldset. The html is like this (it's a gwt app, so tons of stuff is generated: <div id="UpdateUserView-RolesColumn"> ...
0
votes
1answer
47 views

additional space or box generated automatically in IE

In my page, an additional space or box is generated automatically in IE...But it is working fine in other browsers...I dont know what is the reason for this...I have attached the screenshot... In the ...
0
votes
1answer
323 views

ExtJS - Dynamically add CheckBox to Form

I'm trying to dynamically add new form components to a fieldset inside a form and I'm struggling with the checkbox component. I'm getting the "TypeError: Ext.form.Checkbox is not a constructor" error ...
0
votes
1answer
245 views

django admin: How to customize one field in fieldsets?

I try to make one field in django admin's fieldsets to show only certain data, but according to django document, only an example of list_display is shown to be able to customize. I tried the similar ...
0
votes
0answers
117 views

How to adjust inner container height in fieldset with legend? (CSS)

I try to create groupbox with scrollable content in chrome: http://jsfiddle.net/66a8V/. <!-- language-all: lang-html --> <fieldset style="width:400px; height: 200px"> ...
0
votes
1answer
140 views

Django error - refers to field 'n' that is missing from the form

I'm getting to grips with Django, and practising by building a club membership site. In my admin.py for the app I created for members I'm getting the following error thrown: ...
0
votes
5answers
209 views

fieldset same line

I have 2 fieldsets: <fieldset> first fildset </fieldset> <fieldset> second fieldset </fieldset> how can I place them in same line?
0
votes
1answer
89 views

a fly in the ointment on smooth page scrolling with jQuery

Here is my working code to collapse fieldsets and scroll to their anchor smoothly, but sometimes there is a jump before scroll, what isn't really smooth. function smoothScrollTo(element) { var ...
0
votes
2answers
140 views

How do I output hyperlinks for Custom Object name fields in an apex:PageBlockTable

Sounds easy enough, but I'm taking the values output in my table from a number of field sets, so admin users can customise the columns that appear in the table. Here's my functioning page block... ...
2
votes
1answer
504 views

jquery mobile fieldset width

I have a jquerymobile fieldset that looks like this: <fieldset data-role="controlgroup" data-type="horizontal" id="myid"> I want to set a custom width for the fieldset but don't know how to ...
0
votes
4answers
108 views

Get selected option from fieldset

This is causing me a lot of grief, and I'm almost positive it's something stupid. Why is this returning undefined instead of "Test"? See JSFiddle <fieldset class="fieldset"> <select ...
0
votes
3answers
297 views

change value of attributes of a tag using javascript

I have the following HTML generated by Drupal <fieldset id="webform-component-lunchset" class="webform-component-fieldset form-wrapper" style=""> <div ...
0
votes
1answer
815 views

ZF2 rendering subforms in fieldset

In Zend Framework 1 I did the following to render a subform in a fieldset: $row = new Application_Form_Row(); $row->addDecorator('Fieldset'); $this->addSubForm($row, 'row['. $i . ']'); The ...
1
vote
1answer
79 views

Centering & aligning elements inside a fieldset

I currently have a fieldset which must take 96% of my container. This fieldset must have his elements centered but also aligned, so for example all the labels must end at the same spot and all the ...
0
votes
0answers
181 views

Separate jquery validation for each fieldset

Can someone help me with validation of form that has several fieldsets? Of course using jquery validation plugin. For example: I have following form: <form id="customer" name="customer" ...
0
votes
1answer
157 views

outlook 2007 or 2010 doesn't support the background property

i am creating a newsletter which is send via email and in this newletter i am trying to use the <fieldset></fieldset> or <legend></legend> tag and when i give the background ...
1
vote
4answers
187 views

Add class for children element depend on input value with jQuery

I have two fieldsets: <fieldset class="checkable"> <span class="as_cp_checkbox"></span> <input type="hidden" name="register_condition_01" id="register_condition_01" ...
0
votes
0answers
58 views

fieldset outside of a struts iterater

There is a way to have a fieldset outside a struts iterater? not working by me, when doing like this, i have an empty fieldset on top of the displayed data from the iterater <fieldset> ...
1
vote
0answers
180 views

removing fieldsets from profile2 profiles

I've been trying to remove a couple of fieldsets (Biblio Settings and URL Redirects) from user profile2 profiles so that they aren't confusing to users who won't need to modify those settings. ...
0
votes
0answers
83 views

dotted lines in fieldset overlap with legend (CKEditor)

I am trying to create a fieldset with dotted lines but overlap in IE 8. I had no problems with Firefox and Chrome. The problem is with IE only. I tried some workarounds but nothing is working. If I ...
2
votes
1answer
307 views

How to set Text at middle position in `fieldset legend `

How to set Legend text in middle of border in field set I have tried this code.... <fieldset> <legend align="center"> This is text appear at center of border ...
2
votes
1answer
564 views

Zend Framework 2 - Annotation Forms and Fieldsets

I've got the following problem: I read this doc about AnnotationForms. It works great so far. The thing is that I now need to add a CSRF-Token and a Submit-Button. The doc says that I should use a ...
0
votes
0answers
56 views

paragraph <p> element showing skewed in google

I noticed that multiple <p> elements show stacked one over each other in Chrome browser. I have a <fieldset> inside <p> and was hoping each <p> will show separated with break. ...
0
votes
2answers
373 views

Fieldset tag is not working in my asp.net website?

i have a fieldset in my asp.net website to make a groupbox look alike.. but its not coming. here's what i am doing : <fieldset id="fl1" runat="server"> <legend>My ...
0
votes
1answer
270 views

Jquery ui dialog : I can't align inputs correctly

I create a simple dialog form with jquery UI. Html code : <div id="newarticle-form" title="Cr&eacute;ation nouvel article"> <p class="validateTips">Tous les champs sont ...
2
votes
0answers
120 views

scroll animated slideToggle legend to html/body top

I click on the content2 slidetoggle to show the content but I need the html/body to scroll to the # section, moving the opened slidetoggle to the top of the page. I need the main window to scroll down ...
4
votes
3answers
371 views

Align select and input

Is possible align SELECT and INPUT inline without specify WIDTH size, without using tables and with the same HTML? See picture. Live example: http://jsfiddle.net/N4hpQ/ Thank you. <html> ...
0
votes
1answer
137 views

Custom class to fieldset in Jomla module

I am creating a new module and I need/want to add a custom CSS or ID to the entire fieldset, is it possible? How? My code is: <config> <fields name="params"> <fieldset ...
0
votes
0answers
227 views

Internet Explorer Fieldset border is not expanding properly

I'm trying to put an expanding list inside a frameset with a legend. It works fine on Firefox, but adds extra borders on IE. The extra borders appear when I click the link and expand the text, and ...
0
votes
2answers
628 views

2 side by side same size fieldset

I'm designing a webpage with Primefaces but I think my problem is more general : I want 2 fieldsets side by side that have the same size. How can I do it ? Edit: The 2 fieldset are in a ...
1
vote
2answers
1k views

jquery-mobile create dynamic controlgroup and apply jquery-ui css

This is my code: http://jsfiddle.net/YKvR3/34/ I would create a controlgroup with values that are in my array (name). The problem is that when I click load button the values are added in a ...
0
votes
3answers
670 views

Style-able collapsible <fieldset> with jQuery

There is a log-in and registration form in separate fieldset-s like shown below: <fieldset class="login selected"> <legend class="login_link">Login</legend> <div ...
2
votes
1answer
1k views

Jquery mobile search box with button in fieldset full width

I have searched a lot for placing a search button on the right side of an search field. It was very dificult to find some good solution without so many hacks. The only one good solution I have seen ...
1
vote
2answers
949 views

Adjust fieldset width and adjust to center

I am just a beginner for sencha touch technology. Now I got a simple question. How can I adjust the fieldset width and align to center only? I only get the fieldset which are setting for fullscreen ...
1
vote
0answers
170 views

Custom Mailchimp sign up form not working

I am using Twitter Bootstrap and jQuery validate to make my sign up section on my site look nice. I then want this to link to a Mailchimp list. I have built the working front end and have looked at ...
0
votes
1answer
110 views

Start fieldset class collapsible closed

I have question regarding fieldset class collapsible. How to, on page load, this field to be started in CLOSED state? Then people will be see only <legend> input and when they click on it ...

1 2 3 4 5