I am developing a custom Angular component to be used in a Creatio instance. As shown in the screenshot, it directly prompts for “Open source code.” Instead, I want to pass inputs to the component in the same way standard components handle input parameters.
Currently, in the Angular code, the input is being passed as shown below:
@Input() @CrtInput() url: string = "";
Questions:
What other approaches are available for passing input parameters to custom Angular components?
Also, which JavaScript library would you recommend for working with fillable PDFs?
I have a custom field called Start Date on my screen for Contact. All I want to do is to prevent users to be able to enter dates that are before 2026. The Start Date must be any dates in or after 2026.
I thought it would be a simple requirement that would have a no-code solution. Can you be kind enough to let me know if it's possible? I just cannot get that to work.