Cloud
Cloud-Dienstleistung für schnelle und effektive Analyse und Visualisierung von Daten für Ihr Business ohne eigene Applikationen zu erstellen oder zu programmieren.
import { Component } from '@angular/core';
import { StiForm, StimulsoftFormsModule } from 'stimulsoft-forms';
@Component({
selector: 'app-root',
standalone: true,
imports: [StimulsoftFormsModule],
template: `<sti-form [form]="form"></sti-form>`
})
export class AppComponent {
form = new StiForm({ requestUrl: 'api/forms/action' });
}StimulsoftFormsModule — imported directly by the standalone component, no NgModule needed.new StiForm({ requestUrl }) — binds the form to the ASP.NET Core action that handles its requests.