pub fn DefaultTableCellRenderer<Row, Column, T, M>(
props: DefaultTableCellRendererProps<Row, Column, T, M>,
) -> impl IntoViewExpand description
The default cell renderer. Uses the <td> element.
§Required Props
- class:
String- The class attribute for the cell element. Generated by the classes provider.
- value:
Signal<T>- The value to display.
- row:
RwSignal<Row>- Event handler called when the cell is changed. In this default renderer this will never happen.
- index: [
Column]- The index of the column.
- options: [
T::RenderOptions]
§Optional Props
- _marker:
PhantomData<M>