Hi,
Following is my UI, Is there a way i can customize the input/select/tabs/models as angular-material styles.
Hi,
Following is my UI, Is there a way i can customize the input/select/tabs/models as angular-material styles.
Thanks @nikku,
Ya But, CSS wont work in my case, as i have to add html elements along with it like this
<mat-form-field>
<mat-label><span class="fa fa-search"></span> Search for an app</mat-label>
<input matInput name="search" value="searchText">
<button mat-button *ngIf="searchText" matSuffix mat-icon-button aria-label="Clear" (click)="clearSearchText()">
<mat-icon>close</mat-icon>
</button>
</mat-form-field>
@Niall can you help me out here.
Thanks
Jerin
Niall, felix-mueller, vale, StephenOTT, nikku
We are using above kind of UI for our application.
Here XML is used to create BPMN diagram and its the output for Camunda engine used in backend.
What i require is any help if we can use JSON here, in place XML. Just on UI side to handle it effectively rather than using basic camunda given UI.
Thanks
Jerin John
Let me know if there’s any ref to take
Sorry for not getting back to you earlier.
I propose the following:
Generally speaking, you are working with a library here. As we do not have Angular specific bindings (nor Material UI magic hooks built in) you should try to understand how the library works.
What could also help is to understand how to work with plain JS libraries from Angular.
If you desire anything beyond the basic UI Camunda has to offer, consider building your own properties panel with Angular / Material UI. It is straight forward.
You may use our react properties panel example as a reference.