Revision 505

Date:
2015/07/01 17:41:55
Author:
ahitrov
Revision Log:
In-line editing for fields with type => 'text', some inline bug fixes

Files:

Legend:

 
Added
 
Removed
 
Modified
  • utf8/core/comps/contenido/components/section_browse.msn

     
    155 155 % my $attr = $col->{attr};
    156 156 % if ( $col->{type} =~ /^(string|integer|float)$/ && $col->{inline} ) {
    157 157 % my $style = $col->{inline_style} ? $col->{inline_style} : ($col->{type} =~ /^(integer|float)$/ ? 'text-align:right; ' : '' );
    158 <td><input type="text" name="<% 'update_'.$document->id.'_'.$attr %>" value="<% $document->$attr %>" style="<% $col->{inline_width} ? 'width:'.$col->{inline_width}.'px;' : 'width:65px; ' %> <% $col->{inline_style} || '' %>">
    158 % $style .= $col->{inline_width} ? ' width:'.$col->{inline_width}.'px; ' : ' width:65px; ';
    159 <td><input type="text" name="<% 'update_'.$document->id.'_'.$attr %>" value="<% $document->$attr |h %>" style="<% $style %>">
    160 % } elsif ($col->{type} eq 'text') {
    161 % my $style = $col->{inline_style} ? $col->{inline_style} : '';
    162 % $style .= $col->{inline_width} ? ' width:'.$col->{inline_width}.'px; ' : ' width:100px; ';
    163 % $style .= $col->{inline_height} ? ' width:'.$col->{inline_height}.'px; ' : ' height:70px; ';
    164 % my $value = $document->$attr;
    165 % for ( $value ) {
    166 % s/</&lt;/sgi;
    167 % s/>/&gt;/sgi;
    168 % }
    169 <td><textarea name="<% 'update_'.$document->id.'_'.$attr %>" style="<% $style %>"><% $value %></textarea>
    159 170 % } elsif ($col->{type} eq 'checkbox') {
    160 171 % my $checked = $document->$attr ? ' checked' : '';
    161 172 <td align="center"><input type="checkbox" class="<% $attr %>-check" name="<% 'update_'.$document->id.'_'.$attr %>"<% $checked %>>
     
    215 226 % } else {
    216 227 <td><% $document->$attr %>\
    217 228 % }
    229 % } else {
    230 <td><input type="hidden" name="<% 'update_'.$document->id.'_'.$attr %>" value="<% $document->$attr |h %>" style="<% $style %>">
    218 231 % }
    219 232 %
    220 233 % } elsif ($col->{attr} eq 'class') {