input-with-popup
Reactive icon

Input With Popup

Stable version 1.0.0 (Compatible with OutSystems 11)
Uploaded
 on 2 Sep (7 hours ago)
 by 
0.0
 (0 ratings)
input-with-popup

Input With Popup

Documentation
1.0.0
  1. TextInputWithPopup
    • This block returns a text that combines the texts into a single string. (e.g. "Hello, world, Here, we, go")
    • This needs OnChange for event that returns the value changed in the Input.
  2. IdentifierInputWithPopup
    • This block returns a text that combines the identifiers into a single string. (e.g. "2, 9, 2026")
    • This needs PopupGridProperty for input parameter that is properties of the Grid in the Popup.
    • This needs EntityNameOfIdentifier for input parameter that is a name of the entity to which the Grid data's identifier belongs. (e.g. "User" for {User}.[Id])
    • This needs OnChange for event that returns the value changed by selecting in the Grid.
  3. SanitizeInputValue
    • This server action trims the value returned by above blocks. (e.g. " Hello, world ,Here, we , go  " > "Hello,world,Here,we,go")
    • This needs InputValue for input parameter that is the value returned by above blocks.