angular-formio-proyectoscolfuturo
Version:
Form.io Angular JSON Form Renderer ========================== This library serves as a Dynamic JSON Powered Form rendering library for [Angular](https://angular.io). This works by providing a JSON schema to a ```<formio>``` Angular component, where tha
20 lines (19 loc) • 773 B
TypeScript
import { OnInit, EventEmitter, ElementRef } from '@angular/core';
import { Router, ActivatedRoute } from '@angular/router';
import { FormManagerService } from '../form-manager.service';
import { FormManagerConfig } from '../form-manager.config';
export declare class FormManagerIndexComponent implements OnInit {
service: FormManagerService;
route: ActivatedRoute;
router: Router;
config: FormManagerConfig;
gridQuery: any;
refreshGrid: EventEmitter<object>;
search: ElementRef;
constructor(service: FormManagerService, route: ActivatedRoute, router: Router, config: FormManagerConfig);
ngOnInit(): void;
onSearch(): void;
onAction(action: any): void;
onSelect(row: any): void;
onCreateItem(): void;
}