Welcome, Guest
Username: Password: Remember me

TOPIC: [SOLVED] Custom field ordering is broken

[SOLVED] Custom field ordering is broken 11 years 4 months ago #21262

  • w2kd
  • w2kd's Avatar
  • Offline
  • Expert Boarder
  • Expert Boarder
  • Posts: 88
  • Thank you received: 1
Check that you have the right file
/administrator/components/com_dtregister/controllers/field.php

Please Log in or Create an account to join the conversation.

[SOLVED] Custom field ordering is broken 11 years 4 months ago #21264

  • Ginjg
  • Ginjg's Avatar
  • Offline
  • Gold Boarder
  • Gold Boarder
  • Posts: 160
  • Thank you received: 0
thanks for the reminder - I wasn't in the administrator. That does resolve the number of fields displayed.

But that doesn't solve the issue of the order not being saved.

Please Log in or Create an account to join the conversation.

[SOLVED] Custom field ordering is broken 11 years 4 months ago #21265

  • w2kd
  • w2kd's Avatar
  • Offline
  • Expert Boarder
  • Expert Boarder
  • Posts: 88
  • Thank you received: 1
drag and drop works for me now that they are on the same page

Please Log in or Create an account to join the conversation.

[SOLVED] Custom field ordering is broken 11 years 4 months ago #21267

  • Ginjg
  • Ginjg's Avatar
  • Offline
  • Gold Boarder
  • Gold Boarder
  • Posts: 160
  • Thank you received: 0
I even tried switching admin templates to hathor from isis, but there is just no way to save the dragged and dropped order.

Please Log in or Create an account to join the conversation.

[SOLVED] Custom field ordering is broken 11 years 4 months ago #21268

  • w2kd
  • w2kd's Avatar
  • Offline
  • Expert Boarder
  • Expert Boarder
  • Posts: 88
  • Thank you received: 1
Its saves automatically for me
Drag and Drop then refresh your event and it should be in the new order.

Please Log in or Create an account to join the conversation.

[SOLVED] Custom field ordering is broken 11 years 4 months ago #21270

  • gospelfolio
  • gospelfolio's Avatar
  • Offline
  • Fresh Boarder
  • Fresh Boarder
  • Posts: 2
  • Thank you received: 0
I had to make changes to two lines in the field.php:
$listLimit = $mainframe->getCfg( 'list_limit', 40 );

$database = &JFactory::getDBO();

$limit = intval( $mainframe->getUserStateFromRequest( "viewlistlimit", 'limit', $listLimit ) );

$limit = $mainframe->getUserStateFromRequest( 'global.list.limit', 'limit', $mainframe->getCfg('list_limit'), 'int' );

$limitstart = intval( $mainframe->getUserStateFromRequest( "view{$option}limitstart", 'limitstart', 0 ) );

$search = $mainframe->getUserStateFromRequest( "search{$option}", 'search', '' );

$limit = 40 ;

and now I can at least drag and drop

Please Log in or Create an account to join the conversation.

Time to create page: 0.533 seconds