Difference between revisions of "FieldCodeunitPage"

From TempusServa wiki
Jump to navigation Jump to search
old>Admin
(Created page with '= Button: Codeunit execution = Execute proprietary code Properties * Groupable: No * Show in lists: No * Searchable: No == User interface == Field in show mode [[File:FieldTo…')
 
m (3 revisions imported)
 
(2 intermediate revisions by one other user not shown)
Line 3: Line 3:


Properties
Properties
* Type: [[Field type reference#Action button|Action button]]
* Groupable: No
* Groupable: No
* Show in lists: No
* Show in lists: No
Line 29: Line 30:
* ''As shown above''
* ''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 ==

Latest revision as of 12:51, 10 December 2021

Button: Codeunit execution

Execute proprietary code

Properties

  • Type: Action button
  • Groupable: No
  • Show in lists: No
  • Searchable: No


User interface

Field in show mode

FieldTokenMailto show.png

Due to its nature this field has no special editing mode.

User interface as displayed in picture


Configuration

This field requires configuration before deployment.

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

  • FeltTypeID: 750
  • SQL datatype: Special
  • Class name: FieldCodeunitPage