Skip to content

Instantly share code, notes, and snippets.

View guilnorth's full-sized avatar
🏠
Do you wanna develop an App?

Guilherme Gomes guilnorth

🏠
Do you wanna develop an App?
View GitHub Profile
@guilnorth
guilnorth / app.component.html
Last active February 23, 2023 16:33
feat(page-dynamic-edit): adiciona p-load-data #1635
<po-page-default p-title="PO UI">
<router-outlet></router-outlet>
</po-page-default>
@guilnorth
guilnorth / app.component.html
Created November 16, 2022 20:46
feat(page-job-scheduler): adiciona a propriedade p-before-send
<po-page-job-scheduler
p-service-api="https://po-sample-api.herokuapp.com/v1/scheduler"
p-title="Process Scheduler with custom params"
[p-parameters]="graphViewFields"
[p-before-send]="beforeSendAction.bind(this)"
>
</po-page-job-scheduler>
@guilnorth
guilnorth / app.component.html
Last active November 7, 2022 14:50
feat(page-job-scheduler): adiciona funcionalidade de template na parametrização
<po-page-job-scheduler
p-service-api="https://po-sample-api.herokuapp.com/v1/scheduler"
p-title="Background Process Scheduler with dynamic template"
>
<ng-template p-job-scheduler-parameters-template [p-execution-parameter]="executionParameter" [p-disable-advance]="disableAdvance">
<form #parametersForm="ngForm">
<po-dynamic-form
[p-fields]="graphViewFields"
#dynamicForm
(p-form)="getForm($event)"
@guilnorth
guilnorth / app.component.html
Last active October 19, 2022 22:09
App exemplo PO-UI Language #1457
<po-page-default p-title="PO UI">
<po-select
class="po-md-3"
name="locales"
[ngModel]="locale"
(ngModelChange)="locale = $event; onChangeLocale();"
p-label="Localization Example"
[p-options]="localesOptions"
>
</po-select>