Sha256: 11354dcfb24abfcb4b0f37f885b5fe1a733d66ebddc7ae390fa83d9df3be518e

Contents?: true

Size: 848 Bytes

Versions: 8

Compression:

Stored size: 848 Bytes

Contents

%h3= path
%h4 Attributes
%form#form{ :method =>'POST' }
  %table{:width => '100%'}
    %thead
      %tr
        %td Name
        %td Description
        %td Allow Read
        %td Allow Write
        %td Type
        %td Value
    %tbody
      - bean.send(get_set_method, params) do |attribute_info|
        - attribute = attribute_info.attribute
        %tr
          %td= rel_path(attribute_info.ancestry)
          %td= attribute.description
          %td= attribute.allow_read
          %td= attribute.allow_write
          %td= attribute.type.to_s
          %td= attribute_value_tag(attribute_info)
  %input{ :type => 'submit', :value => 'Update' }

:javascript
  $("#form").submit(function() {
    $.post("#{attributes_path(path)}", $("#form").serialize(), function(result) {
      $("#content").html(result);
    });
    return false;
  });

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
rumx-0.2.3 lib/rumx/server/views/content_attributes.haml
rumx-0.2.2 lib/rumx/server/views/content_attributes.haml
rumx-0.1.5 lib/rumx/server/views/content_attributes.haml
rumx-0.1.4 lib/rumx/server/views/content_attributes.haml
rumx-0.1.3 lib/rumx/server/views/content_attributes.haml
rumx-0.1.2 lib/rumx/server/views/content_attributes.haml
rumx-0.1.1 lib/rumx/server/views/content_attributes.haml
rumx-0.1.0 lib/rumx/server/views/content_attributes.haml