I would like to return plain-text back to browser in a lift view like this:
import scala.xml.Text
def csv_export_status_check: NodeSeq = {
Text("my text")
}
But the “my text” just does not show at all.
Am I doing it wrong?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I tried the following, and it worked:
Actually, your version should work as well – maybe there is some other problem?