I would like to place a small table of contents in the footer in ConTeXt, which only shows the sections within the current chapter, but it does not appear. This is what I tried:
\setupfootertexts[\setups{text c}][\setups{text c}][\setups{text c}][\setups{text c}]
\startsetups[text c]
\midaligned{\placecontent[alternative=d, criterium=local]}
\stopsetups
\starttext
\chapter{This is a chapter title}
This is some text.
\section{This is a section title}
This is some more text.
\section{This is another section title}
This is yet some more text.
\chapter{This is another chapter title}
This is still some more text.
\stoptext
This results in an empty footer on all pages.
How can I place a table of contents list for the sections contained within the current chapter in the footer of my document?

