About the streamlit-aggrid category

Have a question about using the streamlit-aggrid Streamlit Component created by @PablocFonseca? Ask here!

I am using st_aggrid in a Python script on Streamlit Cloud. As of this morning, GridOptionsBuilder options don’t seem to be applied: the grid is now defaulting to 100 rows and there is a watermark of AG GRID For Trial Use Only appears when I go to my app on Streamlit Cloud.
Do I need to purchase the Enterprise version of AG Grid to leverage it within a Python script? I am loading 1 data frame into a grid, only using a few basic formatting options.

1 Like

js = JsCode(“”"
function(e) {
debugger;
alert(e.node.data);
console.log(e);
console.log(e.node.data);
console.log(e.node.selected);
console.log(‘jay’);
console.log(e.rowIndex);
return e.node.data
};
“”")

    options.configure_grid_options(onRowSelected=js)

How can i read the js and store in some list.

Foud a solution? I am having the same issue