Welcome, Guest
Username: Password: Remember me

TOPIC: [FIXED] Form layout a bit weird on J3

[FIXED] Form layout a bit weird on J3 11 Jun 2013 20:57 #7433

  • Tomaselli
  • Tomaselli's Avatar
  • Online
  • Elite Member
  • Posts: 293
  • Thank you received: 87
  • Karma: 46
the form layout "exploded" is generated by the j-cook builder in this way:
	<div class="control-group <?php echo($field->responsive)?>">
		<?php echo $field->label; ?>
	</div>	
	<div class="controls">
		<?php echo $field->input ?>
	</div>

this doesn't work very well, and the layout looks a bit weird.

to follow the other joomla standards on j3, it should be:
<div class="control-group" <?php echo($field->responsive)?>">
	<div class="control-label">
		<?php echo $field->label; ?>
	</div>
	<div class="controls">
		<?php echo $field->input ?>
	</div>
</div>
The administrator has disabled public write access.

Re: Form layout a bit weird on J3 12 Jun 2013 03:06 #7436

  • admin
  • admin's Avatar
  • Offline
  • Administrator
  • Chef
  • Posts: 3711
  • Thank you received: 987
  • Karma: 140
Fixed.

Better now ?
Coding is now a piece of cake
The administrator has disabled public write access.
The following user(s) said Thank You: Tomaselli

Re: Form layout a bit weird on J3 12 Jun 2013 03:59 #7438

  • Tomaselli
  • Tomaselli's Avatar
  • Online
  • Elite Member
  • Posts: 293
  • Thank you received: 87
  • Karma: 46
Much much better :-).
I'm playing around with the new mvc and the FORK feature is FANTASTIC!!! it's saving me a lot of time! you are doing a very good job!!

I'll keep on posting bugs found and ideas.
thanks for your work!
The administrator has disabled public write access.
The following user(s) said Thank You: admin
Time to create page: 0.063 seconds

Get Started