mirror of
https://github.com/gradio-app/gradio.git
synced 2025-03-31 12:20:26 +08:00
Allow accessing the entire row of selected values in gr.DataFrame
(#9128)
* s * changes * docstring * add changeset * format * typing * revert * add changeset * changes * add changeset * add changeset * js * add changeset * remove col value * lint --------- Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
This commit is contained in:
parent
f1ef94a435
commit
747013bbac
7
.changeset/easy-geese-live.md
Normal file
7
.changeset/easy-geese-live.md
Normal file
@ -0,0 +1,7 @@
|
||||
---
|
||||
"@gradio/dataframe": minor
|
||||
"@gradio/utils": minor
|
||||
"gradio": minor
|
||||
---
|
||||
|
||||
feat:Allow accessing the entire row of selected values in `gr.DataFrame`
|
1
.gitignore
vendored
1
.gitignore
vendored
@ -34,6 +34,7 @@ gradio/launches.json
|
||||
flagged/
|
||||
gradio_cached_examples/
|
||||
tmp.zip
|
||||
gradio/hash_seed.txt
|
||||
|
||||
# Tests
|
||||
.coverage
|
||||
|
@ -194,6 +194,14 @@ class SelectData(EventData):
|
||||
"""
|
||||
The value of the selected item.
|
||||
"""
|
||||
self.row_value: Any = data.get("row_value")
|
||||
"""
|
||||
The value of the entire row that the selected item belongs to, as a 1-D list. Only implemented for the `Dataframe` component, returns None for other components.
|
||||
"""
|
||||
self.col_value: Any = data.get("col_value")
|
||||
"""
|
||||
The value of the entire row that the selected item belongs to, as a 1-D list. Only implemented for the `Dataframe` component, returns None for other components.
|
||||
"""
|
||||
self.selected: bool = data.get("selected", True)
|
||||
"""
|
||||
True if the item was selected, False if deselected.
|
||||
|
@ -65,7 +65,11 @@
|
||||
if (selected !== false) {
|
||||
const [row, col] = selected;
|
||||
if (!isNaN(row) && !isNaN(col)) {
|
||||
dispatch("select", { index: [row, col], value: get_data_at(row, col) });
|
||||
dispatch("select", {
|
||||
index: [row, col],
|
||||
value: get_data_at(row, col),
|
||||
row_value: data[row].map((d) => d.value)
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -2,6 +2,7 @@ import type { ActionReturn } from "svelte/action";
|
||||
import type { Client } from "@gradio/client";
|
||||
|
||||
export interface SelectData {
|
||||
row_value?: any[];
|
||||
index: number | [number, number];
|
||||
value: any;
|
||||
selected?: boolean;
|
||||
|
Loading…
x
Reference in New Issue
Block a user