Your app is having trouble loading the st_aggrid.agGrid component.

See original GitHub issue

I am using AgGrid 0.0.7 , streamlit v0.73

Your app is having trouble loading the st_aggrid.agGrid component.

(The app is attempting to load the component from , and hasn’t received its “streamlit:componentReady” message.)

If this is a development build, have you started the dev server? If this is a release build, have you compiled the frontend? For more troubleshooting help, please see the Streamlit Component docs or visit our forums.

this happen when i use call the aggrid function:

gb = GridOptionsBuilder(min_column_width=100, editable_columns=False, side_panel=False)
    gb.build_columnsDefs_from_dataframe(input_df) #take df as parameters
    gridOptions = gb.build()


    st.markdown("""
    ## Details#
    """)

    grid_response = AgGrid(input_df, gridOptions=gridOptions, height=500)

    input_df = grid_response['data']

and it seems i continously call the function but i cannot find the “streamlit:componentReady”** message location. can you givve an hints>

Issue Analytics

  • State:closed
  • Created 3 years ago
  • Comments:7 (1 by maintainers)

github_iconTop GitHub Comments

1reaction
luca-serracommented, Sep 15, 2022

I had this issue when deploying on Google Cloud Run also.

Upgrading the machine with more RAM solved the issue for me.

with 512 mb memory I was experiencing this issue. No longer seeing this issue with the container memory set to 2Gb

It seems more like a connection speed issue. With good WIFI, I don’t have the issue. This is discussed here.

1reaction
Es-Becommented, Jan 25, 2021

I am facing the same issue: Your app is having trouble loading the st_aggrid.agGrid component.

(The app is attempting to load the component from , and hasn’t received its “streamlit:componentReady” message.)

If this is a development build, have you started the dev server? If this is a release build, have you compiled the frontend?

Upgrading via “pip install streamlit-aggrid --upgrade” to streamlit-aggrid 0.1.7 didn’t help. Please suggest.

Read more comments on GitHub >

github_iconTop Results From Across the Web

Any ideas on "Your app is having trouble loading the ...
Ag -grid component has static files and is compiled. My guess is that this issue is happening at the streamlit side of the...
Read more >
Controlling Streamlit st_aggrid (AgGrid) layout by placing ...
Here is an example on how to place aggrid inside the container. import streamlit as st import numpy as np from st_aggrid import...
Read more >
streamlit-aggrid
Demo. Grid data is sent back to streamlit and can be reused in other components. In the example below a chart is updated...
Read more >
Performance
1. Setting Expectations. ag-Grid can be as fast as demonstrated in the demo application Demo Application. · 2. Check Cell Renderers. ag-Grid can...
Read more >
Angular Data Grid: Community and Enterprise
This is because the AG Grid library will be loaded twice, one will have the license key and the other will be used...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found