-
Notifications
You must be signed in to change notification settings - Fork 531
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can't use row style class on groups #401
Labels
Comments
This isn't currently possible, but is planned for v3. See: #259 |
The fieldset can be changed by passing a "tag" into VFG.
This will change all of the "fieldset" tags into "div", for example. |
@zoul0813, I must have missed that in the docs. That did the trick. Thanks! |
Don't believe that update has made it into the docs yet, it's fairly new. |
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Apparently there is a bug that doesn't allow the
fieldset
tag to work with therow
class. Is it possible to define a different tag to use instead of thefieldset
tag? Here is the schema that i'm using:Basically, I want two columns for the form (unless the screen is too small). But because of the
fieldset
issue with therow
class, I get the full width row and 50% width columns, but they are stacked vertically. So the column widths are correct, but instead of the 2 columns being side-by-side, they are half-width columns, one on top of the other, with lots of empty space to the right.Is there anyway to set an option to substitute a different tag for the the
fieldset
tag? Or some other way to accomplish what I'm looking for?The text was updated successfully, but these errors were encountered: