Bharat Chauhan

Results 37 issues of Bharat Chauhan

One field depends on the value of the other. For example, an autocomplete widget whose choices depend on the value of another field. When the autocomplete widget send a request,...

enhancement

What's the point of restricting top level type to just lists and dicts?

enhancement

The docs, and almost every Tornado code example on the internet adds handlers to an `Application` via the `handlers` argument to the constructor. That means the application accepts requests for...

web

### Steps to reproduce: - **Step 1:** Create model ```python class MyModel(Model): name = fields.CharField(max_length=10) ``` - **Step 2:** Create migration and upgrade ```sh $ aerich migrate && aerich upgrade...

Exceptions should be handled even when `DEBUG = True`. Consider the `NotAllowedToDisconnect` exception. This exception is very closely related to the application UX. It is an expected exception. What I...

The `sort_keys` parameter (added in v5.1) to `dump()` function is missing from the docs: https://pyyaml.org/wiki/PyYAMLDocumentation#cb67

For example, if subfields in the `ArrayField` are `IntegerField`s, then the input types should be number. And so on.

enhancement

**Features:** - [ ] Setting custom html class names on form elements - [ ] Providing custom text for button labels --- **Possible Solution:** Creating a new keyword called `ui`...

enhancement

Currently data input in the Playground is not editable. It will be useful to provide data for testing certain cases.

enhancement
playground

Currently, we're using indices for generating keys for array's children components. This may result in poor performance and also hinder optimization in child components. Related: #67

bug