Hello Werner,
You are having select lists on a page with class .ops_select .
You have are replacing the select whole select list or options of select list using update_concalls.js.coffee file as followed :
$(".oncalls_select").empty().append("<%= escape_javascript(render(:partial => @oncalls)) %>")
//Here .oncalls_select I am considering as the container div tag for select list with class ops_select as you have specified in coffee script code
Please correct me if I am wrong.
If you want to update the select list whose option was selected recently then you will have to send some identity of that select list in
parameters or you only render response from controller in an text format and update the recently selected list using success function of the $.ajax function. I am explaining both of these ways …
- Sending some identifier for recently selected select list.
In this case you will be giving some identifying attribute value to each select list and along with the selected value of select list you will send this identity value. So that in the update_concalls.js.coffee you will be available with the identity of that select list to which you want to update.
For setting identity for each select list you can keep their id different like ‘select_list_id1’, ‘select_list_id2’, ‘select_list_id3’…
In your coffee script you will be sending this id with parameters as :
$ ->
$(document).on 'change', ('.ops_select' ), ->
val = $(".ops_select option:selected" ).val()
$.ajax '/projects/update_oncalls/' ,
type: 'GET'
dataType: 'script'
data: {ops_group_id: val, select_list_id: $(this).attr('id'
) }
Now in your update_concalls.js.coffee file you will be updating the select list with the id provided in params[:select_list_id] as followed :
$('#<%= params[:select_list_id]%>').parents('.oncalls_select:first').empty().append('<%= escape_javascript(render(:partial => @oncalls)) %>')
//Here .oncalls_select I am considering as the container div tag for select list with class ops_select as you have specified in coffee script code
This way you will send the identifier select_list_id for knowing which was the latest selected select list.
- Updating the select list with success function.
In this case you will get the html response(which you can directly use for appending to the container .oncalls_select).
Your $.ajax call will be updated as :
$ ->
$(document).on 'change', ('.ops_select' ), ->
val = $(".ops_select option:selected" ).val()
var selected_list = $(this )
$.ajax '/projects/update_oncalls/' ,
type: 'GET'
dataType: 'html'
data: {ops_group_id : val }
success: (response) ->
$(selected_list).parents('.oncalls_select:first'
).empty().append(response)
And in controller you will be providing the html string as :
def updated_oncalls
# other code in action
respond_to do |format|
format.html { render :partial => @oncalls }
# Other formats' responses
end
end
This way by using the $(this) in callback function you will get the recently selected select list which you will be updating.
Thanks,
Lauree
Allerin Technologies
(Ruby on Rails Development & Consulting Company)