bokeh / bokeh

Interactive Data Visualization in the browser, from Python
https://bokeh.org
BSD 3-Clause "New" or "Revised" License
19.32k stars 4.18k forks source link

Spinner's Button not displaying on cell selected of Data Table[BUG] #9020

Open duynguyen2411 opened 5 years ago

duynguyen2411 commented 5 years ago

I add an option NumberEditor into a TableColumn of my Data Table. But there isn't a spinner's button to control value of cell selected.

source_bezier = ColumnDataSource({‘x’: [200, 100, 300], ‘y’: [100, 150, 150], ‘size’:[5,9,10],‘color’: [‘red’, ‘green’, ‘yellow’]})
columns = [TableColumn(field=“x”, title=“x”),
TableColumn(field=“y”, title=“y”),
TableColumn(field=“size”, title=“size”,editor=NumberEditor(step=0.1)) ,
TableColumn(field=‘color’, title=‘color’)]
table = DataTable(source=source_bezier, columns=columns, editable=True, height=200) 

image

bryevdv commented 5 years ago

This is the better, more detailed issue. Keeping this one and closing the other.

duynguyen2411 commented 5 years ago

Thanks Bryan