|
|
@ -6,34 +6,32 @@ class Widget::Controls::SaveAs < Widget::Base |
|
|
|
link_name = l(:button_save_as) |
|
|
|
link_name = l(:button_save_as) |
|
|
|
end |
|
|
|
end |
|
|
|
content_tag :span do |
|
|
|
content_tag :span do |
|
|
|
button = link_to link_name, {}, :class => 'breadcrumb_icon icon-save-as', |
|
|
|
button = link_to link_name, "#", |
|
|
|
|
|
|
|
:class => 'breadcrumb_icon icon-save-as', |
|
|
|
:id => 'query-icon-save-as', :title => l(:button_save_as) |
|
|
|
:id => 'query-icon-save-as', :title => l(:button_save_as) |
|
|
|
button + render_popup |
|
|
|
button + render_popup |
|
|
|
end |
|
|
|
end |
|
|
|
end |
|
|
|
end |
|
|
|
|
|
|
|
|
|
|
|
def render_popup_form |
|
|
|
def render_popup_form |
|
|
|
content_tag :form, :id => "query_save_as_form", :method => "post", :action => "#" do |
|
|
|
name = content_tag :p do |
|
|
|
name = content_tag :p do |
|
|
|
label_tag(:query_name, l(:field_name)) + |
|
|
|
label(:query_name, l(:field_name)) + |
|
|
|
text_field_tag(:query_name, @query.name || l(:label_default)) |
|
|
|
text_field_tag(:query_name, @query.name || l(:label_default)) |
|
|
|
|
|
|
|
end |
|
|
|
|
|
|
|
box = content_tag :p do |
|
|
|
|
|
|
|
label(:query_is_public, l(:field_is_public)) + |
|
|
|
|
|
|
|
check_box_tag(:query_is_public) |
|
|
|
|
|
|
|
end |
|
|
|
|
|
|
|
name + box |
|
|
|
|
|
|
|
end |
|
|
|
end |
|
|
|
|
|
|
|
box = content_tag :p do |
|
|
|
|
|
|
|
label_tag(:query_is_public, l(:field_is_public)) + |
|
|
|
|
|
|
|
check_box_tag(:query_is_public) |
|
|
|
|
|
|
|
end |
|
|
|
|
|
|
|
name + box |
|
|
|
end |
|
|
|
end |
|
|
|
|
|
|
|
|
|
|
|
def render_popup_buttons |
|
|
|
def render_popup_buttons |
|
|
|
content_tag(:p) do |
|
|
|
content_tag(:p) do |
|
|
|
save = link_to content_tag(:span, content_tag(:em, l(:button_save))), {}, |
|
|
|
save = link_to content_tag(:span, content_tag(:em, l(:button_save))), "#", |
|
|
|
:id => "query-icon-save-button", |
|
|
|
:id => "query-icon-save-button", |
|
|
|
:class => "button save", |
|
|
|
:class => "button save", |
|
|
|
:href => "#", |
|
|
|
|
|
|
|
:"data-target" => url_for(:action => 'create', :set_filter => '1') |
|
|
|
:"data-target" => url_for(:action => 'create', :set_filter => '1') |
|
|
|
cancel = link_to l(:button_cancel), {}, |
|
|
|
cancel = link_to l(:button_cancel), "#", |
|
|
|
:id => "query-icon-save-as-cancel", |
|
|
|
:id => "query-icon-save-as-cancel", |
|
|
|
:class => 'icon icon-cancel' |
|
|
|
:class => 'icon icon-cancel' |
|
|
|
save + cancel |
|
|
|
save + cancel |
|
|
|