2007-08-13から1日間の記事一覧

idに関係のあるものをとってくる

@items = Item.find(:all, :conditions =>["id=?",current_user.id], :order => :id)

ポストイットっぽいCSS

CSS

li.item{ list-style-type:none; cursor:move; width:200px; line-height:14px; margin-top:5px; padding-bottom:10px; padding-top: 10px; padding-right: 10px; padding-left: 10px; border-top:1px solid rgb(255,204,102); border-bottom:0px solid rgb(…

script.aculo.us でドラッグ&ドロップ on Rails

さてさて夏休みのお勉強ひきつづき。 formで入力したものを、ajaxでdbにおくりつつ、 viewに表示するところまでできたので、 今度は表示を単なるlistとしてではなくて、 ドラッガブルなlistにしちゃおうと思う。きっとそれってscript.aculo.usでできちゃうん…