Difference between pages "FieldCodeunitPage" and "FieldComplexComment"

From TempusServa wiki
(Difference between pages)
Jump to navigation Jump to search
m (3 revisions imported)
 
old>Admin
(Created page with '= Comments = Entry of a list of comments from the users of the case Properties * Type: Complex * Groupable: No * Show in lists: No * Searchable:…')
 
Line 1: Line 1:
= Button: Codeunit execution =
= Comments =
Execute proprietary code
Entry of a list of comments from the users of the case


Properties
Properties
* Type: [[Field type reference#Action button|Action button]]
* Type: [[Field type reference#Complex|Complex]]
* Groupable: No
* Groupable: No
* Show in lists: No
* Show in lists: No
Line 12: Line 12:
Field in show mode
Field in show mode


[[File:FieldTokenMailto_show.png]]
[[File:FieldComplexComment_show.png]]


Due to its nature this field has no special editing mode.
Field in edit mode
 
[[File:FieldComplexComment_edit.png]]


User interface as displayed in picture
User interface as displayed in picture
Line 20: Line 22:


== Configuration ==
== Configuration ==
This field requires configuration before deployment.
No configuration required for this field type
 
[[File:FieldCodeunitPage_BE.png]]
 
Required:
* ''As shown above''
 
Options:
* ''As shown above''
 
== Ajax subforms ==
The following code changes subform behavior to call the codeunit silently and reload the page when done


  $(function() {
    $('#VB_DATA_SUBFORM a.codeunitButton').click( function(e) {
      e.preventDefault();
      $.get( $(this).attr("href") );
      //$(this).parent().parent().hide();
      location.reload();
      return false;
    });
  });


== Developer info ==
== Developer info ==
* FeltTypeID: 750
* FeltTypeID: 140
* SQL datatype: Special
* SQL datatype: int
* Class name: FieldCodeunitPage
* Class name: FieldComplexComment

Revision as of 14:35, 13 March 2013

Comments

Entry of a list of comments from the users of the case

Properties

  • Type: Complex
  • Groupable: No
  • Show in lists: No
  • Searchable: No


User interface

Field in show mode

FieldComplexComment show.png

Field in edit mode

FieldComplexComment edit.png

User interface as displayed in picture


Configuration

No configuration required for this field type


Developer info

  • FeltTypeID: 140
  • SQL datatype: int
  • Class name: FieldComplexComment