「link_to_remote」内のテキストを更新し、リンクを機能させたままにする高品質の方法はありますか?基本的に私は2つのリンクを持っています:
<%= link_to_remote "(#{building.charts.size} Charts)",{:url => {:action => "update_chart_matrix", :chartable_type => "building",:chartable_id => building.id, :title => building.name},
:update => 'chart-matrix',
}
%>
...と...
<%= link_to_remote "Add Chart",{:url => {:action => "add_chart_for_chartable", :chartable_type => "building",:chartable_id => building.id},
:update => 'other_link', #really not sure about this part as I only want to update the Chart Count in the other link
}
%>
リンク内のHTMLを単純に置き換えるのは簡単ですが、その機能を「壊す」ことはしたくありません。何か案は?
ありがとう。