Kirill Gagarski

Results 23 comments of Kirill Gagarski

Perhaps overriding the `results` method (along with `get_list`) may work for you? https://github.com/yourlabs/django-autocomplete-light/blob/037a83a3c21c425fa271775f56b7d22abd30d373/src/dal_select2/views.py#L98-L100

@mpibpc-mroose In 3.3.0-rc* there is a `results` in `Select2ListView` which you can override without much boilerplate (thx to @eayin2). If you want to add your `DictView`, a PR would be...

Hi there. It's been a while since I implemented this forwarding logic and tbh currently pretty far from Python and Django (so it wouldn't be honest to say that I...

Hi @jpic! It's good to know that DAL is alive and being developed! Regarding the forwarding feature: the whole journey towards complicating the things started with field renaming during forward....

> If it is reachable at the end easily (end key), I'll put it there. 1. It seems like "End" key does not work with Select2 2. I do not...

@kohsuke I know that this is a breaking change for well-intended default behavior. However, it's a dangerous default feature to not know about, especially when you are using it to...

This should be handled by the shell running your program. An element of `args` array coming to main function can contain multi-word (and in fact it will if you pass...

``` PS C:\Users\gagar\IdeaProjects> cat .\ArgsDemo.java public class ArgsDemo { public static void main(String[] args) { for (String arg : args) { System.out.println(arg); } } } PS C:\Users\gagar\IdeaProjects> java .\ArgsDemo.java hello...

Let me show an example. Let's consider `driver_license` document and refer to the Telegram Passport docs, specifically [this](https://core.telegram.org/passport#fields) table. We can see three mandatory fields: `data`, `front_side`, `reverse_side` and two...

> It is not optional or always present, It is present if it was requested. But `driver_license` cannot appear without `reverse_side` requested, for example, right?