RE: Knowledge Article in an EntityList
Okay. Thank you. So what I did is I put two EntityList on a single page and put the call for the 2 entities in a web template like this:
-===========================
{% extends 'Layout 1 Column' %}
{% block main %}
{% include 'Page Copy' %}
Must Read Articles
{% include 'entity_list' key: "Must Read Articles"%}
My Knowledge Articles
{% include 'entity_list' key: "My Knowledge Articles"%}
{% endblock %}
-===========================
The problem here is that when the list reached the maximum item and will list the next items to the next page (pagination) the next page won't have the hyperlinks.
I also noticed that these two entities share the same javascript since their classnames are the same.
Is there a way to separate these two and have their classes names different from each other?