I'm using griddle a react component to create a table.
Griddle supports a extra attribute to show a filter input element, which manipulates the table.
Is there a way to use your own independent form / input with griddle. So that when the…
Griddle supports subgrids. I have a custom component (used for row selection) in one of the fields that changes the state. This state change causes a re-render, which collapses the subgrid. However, I'd like it to stay open.
This same problem is…
Was tasked to upgrade from Griddle v0.7 to Griddle v1.1. But I can't seeme to get onRowClick to work.
import React, { Component } from 'react';
import Griddle from 'griddle-react';
export default class Table extends Component {
render() {
…
I'm just wondering if someone has already been able to change the color of a row, in React Griddle, by clicking on it (just once).
I'm experimenting things with JQuery, and even with Griddle Metadata, but it may be done in a cleaner way ?
Edit : I'm…
Is it possible to sort one column via values of another hidden (metadata) column?
Why is this desired?
When Sorting dollar values, it is desirable and more consistent if we sort by numerical values instead of string/formatted dollar values.
When…
We are using React framework in our application and Griddle library for creating table grid with 10,000 rows. Our application is heavily utilizing the searching, sorting functionality on all the data rendered in the Grid.
The problem which we are…
I got stuck on a problem where I want to give some properties to a customCompontent.
I have a react component scoutingList that prints a list of players who are scouted at the moment. It's also possible to remove a player from this list by clicking…
Say the data I want to model in a griddle grid is something like the following:
[
{
"custID": 9,
"custName": "Customer 1",
"host": "Host 1",
"mesg": null,
"password": "Password 1",
"pm": "PM 1",
…
I'm working on a project where Griddle is used to show a list of item. I would like to support the typical master/details pattern and show more details for the selected row adjacent to my grid component. Looking through the API documentation I…
I'm using griddle-react in order to display a table. I'm having trouble making each cell clickable. For now I'd like to just print the id value to the console. Here is my code:
import React from "react";
import ReactDOM from "react-dom";
import…
I am having an issue that I am using the griddle.js and handsontable in my react application and I have to display a value with sup tag. But the output is the plane text with //somethingsomthing but instead it should show like sup tag
I…
I'm fetching json data with ajax. Then I want to output it in Griddle using griddle-react. The problem is I cannot convert my array to a Griddle readable array.
After the ajax fetch i made a callback function:
function convert(obj) {
…
I'm stuck with the following problem: every time I update the searchString in my redux store, the CustomFilterConnectedComponent that I pass to Griddle loses focus and I don't understand why this happens.
this is my code based on the…
trying to use Griddle but it shows 'No results found'
import React, { Component } from 'react';
import DocumentTitle from 'react-document-title';
import PropTypes from 'prop-types';
import { connect } from 'react-redux';
import { loadHeaders }…
I am using Griddle Component and trying to customize Filter component to fit the requirement. I am getting Uncaught TypeError: this.props.onChange is not a function error. I am following this example.…