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 Nov 12, 2020. It is now read-only.
where RepeaterView is my custom control, which generates the template content as follows:
var template = ItemTemplate;
if (ItemTemplate is DataTemplateSelector sel)
{
template = sel.SelectTemplate(item, null);
}
var content = template.CreateContent();
view = content is View v ? v : ((ViewCell)content).View;
view.BindingContext = item;
(pretty standard way).
But after all, when I am typing, the list doesn't show up and the filtering method is not being called.
XF: 4.6
Android: 6.0
The text was updated successfully, but these errors were encountered:
Not sure what to specify. It just doesn't work.
I tried to use the control inside of ListView-like template.
The way I define it is similar to how you do this withing ListView:
where RepeaterView is my custom control, which generates the template content as follows:
(pretty standard way).
But after all, when I am typing, the list doesn't show up and the filtering method is not being called.
XF: 4.6
Android: 6.0
The text was updated successfully, but these errors were encountered: