Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

Grid Buttons

We can embed actions within a grid to perform specific activities, such as deleting the record or sending an email. For our example we will enable users to click a button and make a call.

  1. On the Companies grid click Telephone Button.
  2. We will set Label to Call, as it will be clearer to users.
  3. Click the Action tab.
    1. Action Method, Actionflow.
    2. Actionflow, click .
    3. Name, CallCompany.
    4. Click Confirm.
    5. The actionflow will open. We will look at actionflows in more detail later in the course. Here we will setup a simple actionflow:
      1. Click on Connect, in the dialog that opens click Companies. This tell PhixFlow we need data from the companies grid.
      2. Click Connect Input.
      3. In the mapping screen that opens, drag Number to the right hand side:
      4. From the Actionflow toolbar add a Calculate node. We will use this to construct the action details.
      5. Name it, callDetails, and click Create Action.
      6. Now we need to connect the Input Connection to the Calculate node. Click and hold on the input connection point and drag it over the calculate node:
      7. Click on the pipe between the two items.
      8. In the mapping screen, drag Number to the right. This will allow us to work with the value in the calculate node.
      9. Click n the Calculate node, in its properties click add in the Calculate Attributes section.
        1. Name, CallNumber.
        2. Expression"callto:" + in.Number
        3. Save your changes,  Apply and Close.
      10. From the Actionflow toolbar add an Open URL node.
        1. Name it, Make Call, and click Create Action.
      11. Connect the nodes. Hover over CallDelatils and click out, move your mouse over MakeCall and click.
      12. In the mapping screen that opens, drag CallNumber to URL.
      13. Click Confirm Mapping.
        1. To access the mappings at any point click pipe connecting the two nodes.
    6. Close the Actionflow.
  4. On the view attribute TelephoneButton, we see the actionflow has been set.
  5. It is recommended that an icon be set for the action button to indicate its purpose.
  6. Create an Action Icon Style
    1. Name, TelephoneCall.
    2. Background Image, add the phone-call.svg icon from the zip downloaded earlier.
    3. Background Repeat, no-repeat.
    4. Background Position, center.
    5. Background Size, contain. This resizes the image to make it fit into the available space and is a useful CSS property.
    6. Finally,
      1. In the CSS Properties, click .
      2. CSS Tag, opacity.
      3. Value, 1
    7. Save all changes.

Check Point

The screen should look similar to this:


In-Grid Editing

PhixFlow can be configured to allow users to make edits to records directly in a grid.

  1. Open the View Configuration for the Companies grid.
    1. Right-click and select Show the View Configuration.
  2. In the Advanced section, tick Auto Save.
    1. This will automatically save any changes made in grid, however it is possible to specify an action that goes beyond a simple save such as performing validation of input.
  3. In the View Attributes section, double-click Web.
  4. In the Grid Settings section, untick Read Only.
    1. This allows us to type into the field directly. 
  5. Save your changes.

Testing

Switch to app mode and add a website to a company. Note for a save to occur the user must click out of the cell they updated.

  • No labels