Giter Site home page Giter Site logo

It looks like the dropdown search for non-ascii characters is not works after the version 0.13.0 of dash-core-components about dash-core-components HOT 5 CLOSED

lumingdong avatar lumingdong commented on August 18, 2024
It looks like the dropdown search for non-ascii characters is not works after the version 0.13.0 of dash-core-components

from dash-core-components.

Comments (5)

lumingdong avatar lumingdong commented on August 18, 2024 1

@chriddyp Yes, It got fixed in 0.15.2,Thank you.

from dash-core-components.

chriddyp avatar chriddyp commented on August 18, 2024

@lumingdong - Could you share a small reproducable example? I tried

# -*- coding: utf-8 -*-

import dash
import dash_html_components as html
import dash_core_components as dcc

print(dcc.__version__)

app = dash.Dash()

app.layout = html.Div([
    dcc.Dropdown(
        options=[
            {'label': 'Montréal', 'value': 'Montréal'},
            {'label': 'Tokyo', 'value': 'Tokyo'},
            {'label': '北京', 'value': '北京'},
        ]
    )
])


if __name__ == '__main__':
    app.run_server(debug=True)

and it worked for me. This is the test case that I am using (test code:

).send_keys(u'北')
)

chinese-characters

from dash-core-components.

lumingdong avatar lumingdong commented on August 18, 2024

@chriddyp Sorry, I did't test the 0.15.2, because there is no such version before, the following is my test results for some version.
code:

# -*- coding: utf-8 -*-

import dash
import dash_html_components as html
import dash_core_components as dcc

app = dash.Dash()

app.layout = html.Div([
    html.H1('dash_core_components version: {0}'.format(dcc.__version__)),
    dcc.Dropdown(
        options=[
            {'label': 'Montréal', 'value': 'Montréal'},
            {'label': 'Tokyo', 'value': 'Tokyo'},
            {'label': '北京', 'value': '北京'},
        ]
    )
])


if __name__ == '__main__':
    app.run_server(debug=True)

0 13 0
0 14 0
0 15 0
0 15 2

from dash-core-components.

chriddyp avatar chriddyp commented on August 18, 2024

Thanks for testing these @lumingdong !! It looks like this got fixed in 0.15.2. Is this issue good to close?

from dash-core-components.

chriddyp avatar chriddyp commented on August 18, 2024

Thanks again for reporting @lumingdong :)

from dash-core-components.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.