app/views/pbs_project_elements/new.js.erb
$("#notifications").html("");
$(".modal-body-inner").html("<%= j render(:partial => "pbs_project_elements/new") %>");
$("#myModalLabel").html('<%= I18n.t(:new_pbs_product) %>');
$("#edit_component").modal({
keyboard: false,
backdrop: "static"
});
$("#pbs_project_element_wbs_activity_id").change(function(){
$.ajax({
url:"/refresh_pbs_activity_ratios",
method: 'GET',
data: "wbs_activity_id=" + $('#pbs_project_element_wbs_activity_id').val()
})
});
$("#notifications").html("<%= j(render "layouts/notifications") %>");