Lines 120-126
Link Here
|
120 |
|
120 |
|
121 |
$('#celldiv_'+cost_id).html( |
121 |
$('#celldiv_'+cost_id).html( |
122 |
'<input type="text" name="cost_'+cost_id+'" class="cost_input" size="4" value="'+$.trim(cost)+'" />'+ |
122 |
'<input type="text" name="cost_'+cost_id+'" class="cost_input" size="4" value="'+$.trim(cost)+'" />'+ |
123 |
'<br/>Disable <input name="disable_'+cost_id+'" value="1" class="disable_transport_cost" type="checkbox" '+(disabled ? 'checked' : '')+' />' |
123 |
'<br/>' + _("Disable ") + '<input name="disable_'+cost_id+'" value="1" class="disable_transport_cost" type="checkbox" '+(disabled ? 'checked' : '')+' />' |
124 |
); |
124 |
); |
125 |
disable_transport_cost(cost_id, disabled); |
125 |
disable_transport_cost(cost_id, disabled); |
126 |
} |
126 |
} |
127 |
- |
|
|