i am creating one component with two list with each paging ,but when clicked one pagination the other also shows pagination with limits, So how can can i create for each for pagination
There is a patch that you need to apply :
In there are patch for Joomla!1.5
In there are patch for Joomla!1.6
I tested it and it works perfectly .
Good luck
Related
Is there any way to use drop-down with pagination feature in flutter?. Basically, I need to update drop-down items on the API changes(with limit and offset).
If regardless you get the solution to achieve let's say, it's not a good practice to use pagination for something like a dropdown. If the response is something that gives a lot of data, it's not a great User Experience to make them scroll down to find anyways.
One approach you can take is to take the user to another screen/modal dialog/modal bottom sheet and give them the option to Search or maybe show the listing there with some filters/search.
Am using Alloy UI data table and i have client side pagination. Alloy ui data table has inbuilt pagination and am using it. is there any way to customize its style and things. for example, if we enable pagination, it will provide "page Sizes" and "first, previous, next, last" links and provision to go to pages which i doesn't want.I have uploaded the default data table pagination image and the one i need .
Default
Needed
How to achieve this?
ike you said, we had a similar requirement. Preferred using AUI DataTable along with Jquery pagination plugin.
Here I attached the Link for JQuery opensource plugin for pagination. Its easy to use.
I have a component that performs pagination with its suffix.
So,
/contents/myproject/search.html/1 brings the first page displaying 10 results
/contents/myproject/search.html/2 brings the second page displaying 10 different results
Now I've been asked to make it more dynamic and add a next button to page 1, so it will append the next 10 results, instead of having another separate page load.
My plan is to use JS and make an AJAX call to the following page, find the div I want, take those 10 results and append them to my first 10. The issue is that page is enormous and I would be downloading a lot of other unnecessary stuff in that call.
Is it possible to access the rendered component only? the one being added by
<cq:include path="pagination" resourceType="myproject/components/pagination" />
If you have node pagination under /contents/myproject/search/jcr:content with correct sling:resourceType, then it should be pretty easy - GET request to /contents/myproject/search/jcr:content/pagination.html.
Also it highly depends on implementation of this component if suffix will work there.
I am just wondering is there any plugin to create dynamic content for a page i.e something similar to a data repeaters in .net. To make it simple it should be a section that should contains 5 to 6 fields/property like
heading
heading 2
image
content - rich text editor
info
This must be in repeatable control so that the editor can add any number of these section a page and all these should be displayed in a single page.
Is there a plugin for the above functionality or what is the best way to achieve this.Any help would be greatly appreciated.
Thanks
Aneesh
You can achieve this without any plugins.
Create your repeatable section (containing the relevant fields) as a document type, and then use the multi-node picker in another document type to select one or many of the sections.
So for example, I could have a FAQs page (which uses a document type called "FAQs Page"), and I want to be able to add multiple question and answers to this page. I could set up a document type called "Question". This will contain two fields: Question and Answer.
On the "FAQs Page" document type, I would add a multi-node picker field called "Questions". This way, an author could select multiple "Question" nodes to appear on the FAQs page.
You would obviously need the code to output this, and also you would create a data type that inherited from multi-node picker, so that you could limit the selection to only Question nodes.
There is also the Repeatable Custom Content datatype which works well but does not support all data types. But it does support all the ones you need for your stated purpose (textstring, media picker, richtext area, etc).
You can find it here: http://our.umbraco.org/projects/backoffice-extensions/repeatable-custom-content I've used it a few times and it works really well in certain situations (e.g. where the items will not be shared across different pages of your site).
If you are sharing content components across multiple pages then #Digbyswift's solution is perfect.
I've always Digbyswifts method, but whilst looking for an alternate solution tonight I found this plugin, which is excellent for those situations where creating lots of widget nodes feels like overkill. It's licensed but the free older version is also available.
http://inaboxdesign.dk/blog/widget-builder-for-umbraco/
I would like to use a javascript function link such as 'link:j-myJS-data' for drill down type charts. I have everything working great to drill down but cannot figure out how to incorporate the overlayButton through the configureLink when drilling down. At present, I can drill down but cannot go back. Can anyone provide a basic example of how I may go about this? Is it even possible?
I thought I could add my own "Back" button to hande this as one option. I do not want to use a jsonURL as there is a lot of data and many paramertes need to be passed resutling in a long links and a lot of extra data in the JSON.
Thanks in advance.
There are multiple options available to create a drill-down chart with FusionCharts XT. Here is a table which explains all of them, with each one's syntax.
The method that you've used is the JavaScript function link. Using this one, you won't get an overlay button to go back to the parent chart.
The overlay button is available only when a LinkedChart is created.
So there are 2 ways that you could go about:
You could change all your charts to use the LinkedCharts technique. Here is a blog post detailing how LinkedCharts can be created using PHP + MySQL. If you aren't using PHP, the general idea shown still applies to any server-side environment.
You could create a separate button sitting near the chart, and this button would re-create the parent chart for you.
The button (which we call "overlay-button") can be made automatically visible using LinkedCharts alone.
However the overlay-button can be internally invoked using the charts' private API. Since these APIs are private, it may change between implementations and may not work as desired under certain circumstances. I would not recommend you to use this. If you are still interested in knowing more on this API, put in a comment and I will update this post.