You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 13, 2023. It is now read-only.
Since the results are more than one field, I would like the results to line up vertically, like an html table with TDs.
The names have different lengths, and the results don't look professional.
This can be done when using the JQuery autocomplete when returning items with .append, where we are able to format with html table and style tags.
With ng-completer, we have each row data, but no way to put the table tags before and after them.
Can something similar be done here?
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I am using ng-completer with completerService.remote like this:
this.myDataRemote = completerService.remote("http://localhost:1234/api/MyApp/getData?SearchString=",
"firstName,lastName,phone,eMail",
"firstName,lastName,phone,eMail,dateCreated,id");
Since the results are more than one field, I would like the results to line up vertically, like an html table with TDs.
The names have different lengths, and the results don't look professional.
This can be done when using the JQuery autocomplete when returning items with .append, where we are able to format with html table and style tags.
With ng-completer, we have each row data, but no way to put the table tags before and after them.
Can something similar be done here?
The text was updated successfully, but these errors were encountered: