I'm doing a kind of paginator in TS... I'm doing a select, but I need to confugre (from a GP:var) the begin (to set the "begin" page) value... But I dont find a way to do that...
I have been looking for it in Google, and everybody says it is a int+calc object... But I dont understand the idea of being a int+calc if I cant set a variable in the calc...
I let you an example of my code
10.select {
pidInList.insertData = 1
pidInList = this
max = 5
begin = 0 #Here is where I would like to configure the begin dynamicaly with stdWrap or something like that
orderBy = pages_smc_news.date DESC
leftjoin = pages_smc_news ON(pages_smc_news.pid = pages.uid) LEFT JOIN tt_content ON (tt_content.pid = pages.uid)
selectFields = pages_smc_news.date, title, bodytext, header,tt_content.pid
where = header="teaser"
andWhere = tt_content.sys_language_uid = 0
}
10.renderObj = COA
10.renderObj {
...
}
...