# HG changeset patch # User Tomas Zeman # Date 1334230624 -7200 # Node ID f40c67ede33dd252f12540e2084586deb2795f85 # Parent 523c5c5b84e5a01e6dba842d7e9dd1f212fe189e Contact help diff -r 523c5c5b84e5 -r f40c67ede33d src/main/scala/fis/crm/model/Contact.scala --- a/src/main/scala/fis/crm/model/Contact.scala Thu Apr 12 13:36:45 2012 +0200 +++ b/src/main/scala/fis/crm/model/Contact.scala Thu Apr 12 13:37:04 2012 +0200 @@ -20,7 +20,7 @@ import net.liftweb.record.{MetaRecord, Record} import net.liftweb.record.field._ import net.liftweb.squerylrecord.RecordTypeMode._ -import net.tz.lift.model.{FieldLabel => FL} +import net.tz.lift.model.{FieldLabel => FL, FieldHelp => FH} import net.tz.lift.model.{OptionalFieldDisplay => OptDisp} import net.tz.lift.model.{OptionalEmailField => OptEmail} import scala.xml.Text @@ -32,7 +32,7 @@ val firstName = new StringField(this, 80, "") with FL val lastName = new StringField(this, 80, "") with FL val position = new OptionalStringField(this, 40) with OptDisp with FL - val workMail = new EmailField(this, 256) with FL + val workMail = new EmailField(this, 256) with FL with FH val privateMail = new OptEmail(this, 256) with OptDisp with FL val otherMail = new OptEmail(this, 256) with OptDisp with FL val workMobile = new StringField(this, 40) with FL