Sha256: 0ca396581ec6e1f9d2465c7191e81f7365ce9866072532c3de75416090852513

Contents?: true

Size: 784 Bytes

Versions: 8

Compression:

Stored size: 784 Bytes

Contents

%h3= path[1..-1]
%h4 Attribute
%table{}
  %tr
    %td  Name:
    %td= attribute.name
  %tr
    %td  Description:
    %td= attribute.description
  %tr
    %td  Allow Read:
    %td= attribute.allow_read
  %tr
    %td  Allow Write:
    %td= attribute.allow_write
  %tr
    %td  Type:
    %td= attribute.type.to_s
  %tr
    %td  Value:
    %td
      - if attribute.allow_write
        %form#form{ :method =>'POST'}
          = attribute_value_tag(attribute, param_name, value)
          %input{ :type => 'submit', :value => attribute.allow_read ? 'Update' : 'Set' }
      - else
        = value

:javascript
  $("#form").submit(function() {
    $.post("#{attribute_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.0.8 lib/rumx/server/views/content_attribute.haml
rumx-0.0.7 lib/rumx/server/views/content_attribute.haml
rumx-0.0.6 lib/rumx/server/views/content_attribute.haml
rumx-0.0.5 lib/rumx/server/views/content_attribute.haml
rumx-0.0.4 lib/rumx/server/views/content_attribute.haml
rumx-0.0.3 lib/rumx/server/views/content_attribute.haml
rumx-0.0.2 lib/rumx/server/views/content_attribute.haml
rumx-0.0.1 lib/rumx/server/views/content_attribute.haml