Fixed Issue 146: In "Cluster and Edit Column", clicking on entry value to set "Merge?" checkbox does not reflect the final value of operation

git-svn-id: http://google-refine.googlecode.com/svn/trunk@1415 7d457c2a-affb-35e4-300a-418c747d4874
This commit is contained in:
David Huynh 2010-09-30 17:18:19 +00:00
parent 7aa2c28a48
commit 72060575bc

View File

@ -116,7 +116,10 @@ ClusteringDialog.prototype._renderTable = function(clusters) {
var rowCount = 0;
var onClick = function() {
var parent = $(this).closest("tr");
parent.find("input[type='text']").val($(this).text());
var value = $(this).text();
cluster.value = value;
parent.find("input[type='text']").val(value);
parent.find("input:not(:checked)").attr('checked', true).change();
return false;
};