leptos_struct_table

Function DefaultTableRowRenderer

Source
pub fn DefaultTableRowRenderer<Row>(
    class: Signal<String>,
    row: Row,
    index: usize,
    selected: Signal<bool>,
    on_select: EventHandler<MouseEvent>,
    on_change: EventHandler<ChangeEvent<Row>>,
) -> impl IntoView
where Row: TableRow + Clone + 'static,
Expand description

The default table row renderer. Uses the <tr> element. Please note that this is NOT a #[component].