I get the following compiler error when switching from M5 to M6
versions of Lift:

..\snippet\ManageUsers.scala:24: error: ManageUsers.this.ModelView
does not take type parameters
   val view: ModelView[User] =  new UserView(new User, this)

Here's my code to this point:

class UserView(entity:User, snippet:ManageUsers) extends ModelView
[User](entity, snippet){
  override val editAction = TheBindParam("edit", snippet.link("edit",
()=>load, Text(S?("Edit Roles"))))

}


class ManageUsers extends ModelSnippet[User]{

   val view: ModelView[Userr] =  new UserView(new User, this)

...

}

My question is two-fold:

1) What is the fix for this error?

2) What ever happened to backwards compatibility? I stopped using
Snaptshots because changes kept breaking my code. I thought I was
somewhat insulated from this problem going to released versions. Now,
with M7 due to be released, what other problems am I going to
face?????

Glenn
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Lift" group.
To post to this group, send email to liftweb@googlegroups.com
To unsubscribe from this group, send email to 
liftweb+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/liftweb?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to