-
Notifications
You must be signed in to change notification settings - Fork 84
Update select-data.md #469
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
base: main
Are you sure you want to change the base?
Conversation
Added the warning about Joomla's default query limit and a workaround on how to disable it in the Model, if need be.
PR Reviewer Guide 🔍Here are some key observations to aid the review process:
|
PR Code Suggestions ✨Explore these optional code suggestions:
|
Hi, thanks for the note, but I think that's the wrong place, it should go somewhere at the But I didn't found an Explanation about how the list model works at the first look, we also need the component creation tutorial... Would be great if you like to do bigger task? We have 2 simple extensions but the full process is still missing, at https://docs.joomla.org/J4.x:Developing_an_MVC_Component/Introduction is the old documentation about this topic. |
Hi HLeithner,
I agree with your thoughts, however, I could find no direct spot to place this under the components section you highlighted. The next best place was right here, where anyone who might have the need can find it.
I agree with you. The tutorials for the list model and component creation are very important. I had to scour the whole internet and do a lot of trial and error to make things work in J5.
Yes, I will love to jump in on bigger tasks. I will tackle that next. |
Great, I think you can close this PR since it doesn't make sense to place it here. An example could be #261 |
User description
Added the warning about Joomla's default query limit and a workaround on how to disable it in the Model, if need be.
Long story: This was as a result of a challenge I just faced for a component that had its own novel way of displaying data using glossary-type structure. This update worked and might help someone (me) in future
PR Type
documentation
Description
Added a developer warning about Joomla's default query limit.
Provided a code example to disable list limit in models.
Explained how to retrieve all rows by setting
list.limit
to 0.Changes walkthrough 📝
select-data.md
Document Joomla's default list limit and how to disable it
versioned_docs/version-5.3/general-concepts/database/select-data.md
list.limit
to 0 in models.