Sorry if i am asking a lot of questions lately, but i am trying to get
this project of mine working so i can write about the specific
problems i ran into and how they got done.
def subnets(xhtml: NodeSeq): NodeSeq = {
val content = IPnet.findAll(OrderBy(IPnet.name,
Ascending)).map(ip
=> {
/* Bind the xml */
bind("ip", xhtml,
"subnet" -> Text(ip.name.toString),
"action" -> SHtml.a(expand(ip.subnet) _, "See
all IPs")
)
}).mkString
XML.loadString("<span>%s</span>".format(content))
}
def expand(subnet: String): JsCmd = {
Log.info("Requested subnet %s".format(subnet))
Alert("subnet %s was requested".format(subnet))
}
The Problem is the "action" that gets binded. I don't get how i have
to use SHtml.a to pass a value to the called function. Any hints?
Thank you very much in advance
--
You received this message because you are subscribed to the Google Groups
"Lift" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/liftweb?hl=en.