This is a Ticker plugin for October CMS. It can be used to show a stock-ticker or scrollable news-flashes.
title, content, status, sort_order
- Create
- Update
- Delete
- Reorder (Sortable)
Sorting
- sortColumn (autocomplete): Model column the records should be ordered by
- sortDirection (dropdown): [asc|desc]
To use the component, drop it on a page, fill in the plugin properties and use the {% component 'tickerList' %}
tag anywhere in the page code to render it. The next example shows a simplest page code that uses the ticker component:
tickerList
[tickerList]
sortColumn = "sort_order"
sortDirection = "desc"
==
{% component 'tickerList'%}
If you want to pass extra data to the tickerList template you can assign this as parameter.
{% component 'tickerList' extraData=myVariable %}