This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- lookup query | |
select | |
-1 as country_work_impact_id, | |
'[any]' as country_work_impact_name | |
union all | |
SELECT DISTINCT | |
country_work_impact_id, | |
country_work_impact_name | |
FROM V_Matrix_FY14_Aggregate |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%= f.input :nome, :collection => get_schools_name, :include_blank => false, :input_html => {:rel => 'autocomplete', :data_default => @school.nome} %> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
asd = -> | |
$('.shipping').each -> | |
option = [] | |
$(this).find('option').each -> | |
option.push $(this).text() | |
input = $('<input>') | |
input.attr('type','text') | |
input.attr('name', $(this).attr('name') ) | |
input.attr('id', $(this).attr('id') ) |
NewerOlder