Daniel Low
Daniel Low
The current link returns a 404. Using waybackmachine I could confirm the new link now points to the same content that was referenced [before](http://web.archive.org/web/20200811041859/https://relay.dev/docs/en/pagination-container.html).
I noticed that passing onGridReady handler in ``` grid_option_builder.configure_grid_options( onGridReady=st_aggrid.JsCode(""" function(params) { alert(1); } """) ) ``` does not get triggered but changing `onGridReady` to `onCellClicked` works. Upon digging into...
The parsing of tags relies splitting on colon which does not work when other properties has colon. E.g. having a date property that includes time. This commit fixes it by...