How can I remove the CSS Styled conted header output from a Ajax Page in TYPO3?
This is my Typoscript:
ajax = PAGE
ajax {
typeNum = 1234
# this solution is working, but then I don't have flexform values
# 10 < tt_content.list.20.myextension_pi1
10 < styles.content.get
10 {
select.where = colpos = 0
select.andWhere = list_type='myextension_pi1'
}
config {
disableAllHeaderCode = 1
additionalHeaders = Content-type:application/json
xhtml_cleaning = 0
admPanel = 0
debug = 0
no_cache = 1
}
}
This is my Ajax Result - Hello World is tt_content header:
<h2 class="csc-firstHeader">Hello World</h2>{"valid":false}
I tried already without success:
lib.stdheader >
lib.header >
And this will affect ALL page types, and for standard output I want to keep tt_content header output.