Chris Sainty

Results 185 comments of Chris Sainty

@kamranghamsari This requires some investigation and I don't have any free time for this right now. Feel free to look into it and propose a solution.

I think this is something we should enable/support. This will need some design work though. I'm thinking about a overhaul of the Typeahead so I wouldn't want this to be...

@mivandoni You can do that with some custom CSS.

I mean you can write some CSS which overrides our defaults and applies whatever you prefer. Perhaps it would be worth spending some time understanding CSS if you're writing web...

The interesting challenge here is how we highlight text in the template as we don't have access to it until its rendered. I think this is only going to be...

Its great there is a manual way round this for people based on @vertonghenb [comment](https://github.com/Blazored/Typeahead/issues/82#issuecomment-565772496). But it would be great to get this working automatically with the control, somehow.

The short answer is you can't at this point in time. The typeahead uses very specific CSS to make it work and we need to redesign it to allow any...

Hi @timbze, thanks for raising this issue. I think the best way to solve this is to expose our internal clear method. There are quite a few operations we need...

I don't think this event works on a component. I think it will only work on HTML elements. What are you looking to do when the Typeahead gets focus?

Have you tried using the `:focus-within` pseudo selector? This is designed for this exact purpose and you wouldn't need to manually apply and remove a CSS class. There is a...