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
Currently it's not possible to set a field which is a method in the typeaheadOptionField to show the result of this method as option.
For example we have a list of objects of that class:
class Sample {
id : number;
localize() {
return 'something translated';
}
}
Now i would like to show the value that is returned by the localize function, but use the id as model. For this, we would need something like a typeaheadModelField as Input.
The text was updated successfully, but these errors were encountered:
Currently it's not possible to set a field which is a method in the
typeaheadOptionField
to show the result of this method as option.For example we have a list of objects of that class:
Now i would like to show the value that is returned by the
localize
function, but use theid
as model. For this, we would need something like atypeaheadModelField
asInput
.The text was updated successfully, but these errors were encountered: