-
Notifications
You must be signed in to change notification settings - Fork 920
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
[FIELDS] setFieldOrder() #10
Milestone
Comments
Then these need to be done too: $this->crud->setColumnOrder(['column_1', 'column_2', 'column_3']);
$this->crud->setButtonOrder($stack, ['column_1', 'column_2', 'column_3']); |
On second thought, the order is self-evident. You type the columns/fields in an order and that's the order they're shown. I say... drop it like it's hot. |
If you need to change the order or fields lateron you can simply remove or comment out the Thought that might help someone 🙂 |
This was referenced Apr 2, 2020
Closed
Closed
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The programmer should have the ability to choose the order the fields, after the fact.
This function in Crud.php should be completed:
$this->crud->setFieldOrder(['field_1', 'field_2', 'field_3'], 'update/create/both');
The text was updated successfully, but these errors were encountered: