Hi adrenalinedj,
Yes, jQWidgets is fully compatible with Reactive Forms. We will soon have a full featuring example of it.
For now look at this example:
reactive form control with native HTML Elements:
<form [formGroup]="stepOneForm" novalidate>
<div class="form-group">
<label class="center-block">Email:
<input formControlName="email"> <<<---------------------
</label>
<div *ngIf="errMsgs.email.length" class="alert alert-danger">
<ul>
<li *ngFor="let error of errMsgs.email">
{{error}}
</li>
</ul>
</div>
</div>
</form>
reactive form control with jQWidgets Angular Elements:
<form [formGroup]="stepOneForm" novalidate>
<div class="form-group">
<label class="center-block">Email:
<jqxInput formControlName="email"></jqxInput> <<<---------------------
</label>
<div *ngIf="errMsgs.email.length" class="alert alert-danger">
<ul>
<li *ngFor="let error of errMsgs.email">
{{error}}
</li>
</ul>
</div>
</div>
</form>
As you can see all you need to do is replace the native controls with jQWidgets one’s.
Everything else is the same.
Best Regards,
Ivo
jQWidgets Team
http://www.jqwidgets.com/