我想驗證一些比例按鈕,確保用戶選擇其中之一。我這樣做是通過使用:validates_presence_of和模板Ruby on Rails
validates_presence_of
此外,我有具體的模板,我用於頁面的佈局。通常,如果沒有模板佈局,缺少的任何內容都會由validates_pressense_of helper以紅色自動突出顯示。但是,對於模板,我只能看到顯示的單詞,這可能是模板的結果。
有沒有辦法解決這個問題,並且缺少用模板紅色突出顯示的字段?
這裏是.css文件我使用模板的片段:
body{
background:#F4DDB1;
margin:0;
font: 10pt/14pt 'Lucida Grande', Verdana, Helvetica, sans-serif;
}
A:link{ color:#275A78; text-decoration:none; }
A:hover{ color:#333333; text-decoration:underline; }
A:active{ color:#275A78; text-decoration:none; }
A:active:hover{ color:#333333; text-decoration:underline; }
A:visited{ color:#275A78; text-decoration:none; }
A:visited:hover{ color:#333333; text-decoration:underline; }
#header{
background:url(../images/headerbg.gif) no-repeat #F4DDB1 top left;
width:282px;
height:439px;
margin-right:auto;
/*
*margin-left:0;
*/
margin-bottom:0;
text-align:right;
float:left;
}
#wrap{
width:782px;
margin-right:auto;
margin-left:auto;
}
#container{
background:#F8EBD2;
width:500px;
/*margin-left:282px;
margin-top:-452px; */
float:right;
}
#navcontainer{
/*
*
*/position:absolute;
width:282px;
margin-right:auto;
margin-top:435px;
margin-left:60px;
}
#navlist li{
margin-left:15px;
list-style-type: none;
text-align:right;
padding-right: 20px;
font-family: 'Lucida Grande', Verdana, Helvetica, sans-serif;
font-size:12px;
color:#666666;
}
#navlist li a:link { color: #666666; text-decoration:none; }
#navlist li a:visited { color: #999999; text-decoration:none; }
#navlist li a:hover {color: #7394A0; text-decoration:none; }
h3{
font-size:21px;
font-weight:bold;
color:#8C7364;
}
.content{
padding:10px;
width: 100%
text-align:justify;
font: 9pt/14pt 'Lucida Grande', Verdana, Helvetica, sans-serif;
}
#footer{
background:transparent;
height:66px;
text-align:center;
font: 8pt/14pt 'Lucida Grande', Verdana, Helvetica, sans-serif;
color:#333333;
}
#title{
position:absolute;
top:440px;
left:9px;
padding-left:9px;
font: 14pt/12pt 'Lucida Grande', Verdana, Helvetica, sans-serif;
color:#275A78;
}
的代碼將在這個部分:
<div class="content">
<!-- here is your page content -->
<%= yield :layout %>
<!-- end page content -->
</div>
http://www.otoplusvn.com/TherapistSurvey/counselor_questionaries/new
如果您不要點擊任何單選按鈕,然後按提交您只能看到錯誤消息,但這些字段不會突出顯示。
任何意見讚賞, 謝謝, 德里克
請看上面的答案。我回答了這個問題,所以你可以看到用於生成單選按鈕的html代碼。這是一段代碼,而不是完整的源代碼。 – darewreck 2010-08-14 22:33:42