Can anybody tel about what is the use NodeSeq object in lift frame works form processing.? can we process our form without using the NodeSeq object.?
For the first question - NodeSeq
is part of scala package scala.xml.NodeSeq
which offers native support for parsing and working with xml in scala. check the scala_docs for this.
For the second question - Considering NodeSeq is xml
, you can parse it using an xml parse but as to how to do that... I don't know.