Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix field value replacement #54

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/ajax-chosen.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,9 @@ do ($ = jQuery) ->
options.success = (data) ->
# Exit if the data we're given is invalid
return if not data?

# Grab the current field value
currentVal = field.attr('value')

# Go through all of the <option> elements in the <select> and remove
# ones that have not been selected by the user. For those selected
Expand Down Expand Up @@ -148,7 +151,7 @@ do ($ = jQuery) ->
# call trigger above. Often, this can be very annoying (and can make some
# searches impossible), so we add the value the user was typing back into
# the input field.
field.val(untrimmed_val)
field.attr('value', currentVal)

# Because non-ajax Chosen isn't constantly re-building results, when it
# DOES rebuild results (during liszt:updated above, it clears the input
Expand Down