⚠ In case you've missed it we have migrated to our new website, with a brand new forum. For more details about the migration you can read our blog post for website migration. This forum is read-only and soon will be archived. ⚠


Jefer

Member Since 30 Jul 2013
Offline Last Active Feb 17 2014 06:29 PM
-----

Posts I've Made

In Topic: Hidden

28 October 2013 - 06:11 AM

I am trying to do the same but It doens't work in GC 1.4.1. I am doing a web page where a user can write consultation to the admin, that's why I need the user_id to be stored in consultation table and the user can't choose another's username (obvious). When I use field_type invisible, the user_id field is still there in add form, with hidden type is the same. Any suggestion?


In Topic: read page not showing relations

28 October 2013 - 05:28 AM

YEP!
IT WORKS!

 

just still one minor ISSUE

 

in this way 

 

hidden fields are visible in read page but they MUST BE HIDDEN!

 

 

 

and also...

 

isnt possibile to personalize columns to show in read page and only in the read page ( i would like to hide some )?

 

 

grat job, thank you so much

 

This happens with invisible fields, too.

 

Can you fix it please? I don't want to use hidden.


In Topic: New version 1.4.1

11 September 2013 - 04:25 AM

I am using 1.3.1, how can i upgrade to 1.4.1. Is there anything to consider or just replace the files for the new ones? Is there any guide?

 

Thanks for great work @web-johnny


In Topic: put the action buttons in first column

30 July 2013 - 05:05 PM

@kenshicu You are right, but that change is only for thead. I also had to change the following code to the bottom for the tbody.

 

Thanks!!!

<?php foreach($columns as $column){?>
			<td width='<?php echo $column_width?>%' class='<?php if(isset($order_by[0]) &&  $column->field_name == $order_by[0]){?>sorted<?php }?>'>
				<div class='text-left'><?php echo $row->{$column->field_name} != '' ? $row->{$column->field_name} : '&nbsp;' ; ?></div>
			</td>
			<?php }?>