vote up 1 vote down star

Hi, im just starting with lift and scala and have a problem i dont realy understand.

i have the folowing index.html

<html>
<head><title>title</title></head>
<body>
    <table>
        <lift:Members.list>
            <tr>
                <td><m:nick/></td>
            </tr>
        </lift:Members.list>
    </table>
</body>

And the folowing snippet:

class Members {

def list(xhtml: NodeSeq) =
Member.findAll.flatMap(member => bind("m",xhtml
                                      ,"nick" -> member.nickName
    ))

}

for some reason i get the following error. ive tried alot of things but cant get it to work. whats wrong?

XML Parsing Error: prefix not bound to a namespace
Location: http://localhost:8080/hazardlift-1.0-SNAPSHOT/
Line Number 8, Column 25:<td><m:nick></m:nick></td>
-----------------------------^
flag

1 Answer

vote up 1 vote down check

Maybe lift doesn't get how to handle your return value. Try forcing an implicit conversion to NodeSeq by specifing it as returntype.

....
def list(xhtml: NodeSeq) : NodeSeq = 
....
link|flag
That worked, thanks alot. How could one discover that in a good way? The error was not really helpfull... – Mikael Sundberg Jun 20 at 8:15
An exception should direct you to the log. You'll probably see in your log that there was a failure trying to match the snippet. It's standard that snippets need return types, so that should prompt you to check the type signature on your snippet delcaration. – Joe Sep 9 at 14:51

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.