Thank you for the suggestion…but I have already achieved the desired functionality with the use of “st_aggrid” . Saw Aggrid somewhere in the documentation so thought of trying it, it’s a pretty good thing, I used
“gb = GridOptionsBuilder.from_dataframe(dataframe)”
instead of standard st.dataframe and then used this kind of thing for selection
“gb.configure_selection(‘single’, use_checkbox=True, groupSelectsChildren=False, groupSelectsFiltered=False)”
for redirection used the classic js code
" redirect_js = JsCode(“”"
function(params) {
if (params.node.selected) {
window.open(params.data[‘View URL’], ‘_blank’);
}
}
“”") "
added a “View_Url” column stores the url for each tickets according to their id
if ‘id’ in A_tickets.columns:
A_tickets = A_tickets.copy()
A_tickets[‘View URL’] = A_tickets[‘id’].apply(lambda x: f"{base_url}{x}")
if 'id' in B_tickets.columns:
B_tickets = B_tickets.copy()
B_tickets['View URL'] = B_tickets['id'].apply(lambda x: f"{base_url}{x}")
then I made the view_url column hidden and configured grid options to include the row selection event listener
if ‘View URL’ in dataframe.columns:
gb.configure_column(“View URL”, hide=True)
# Configure grid options to include the row selection event listener
gb.configure_grid_options(
onRowSelected=redirect_js, # Attach the JavaScript function to the row selection event
domLayout='normal'
)
I displayed A and B tickets in different tabbs so in each tab added aggrid configuration
with tab1:
st.subheader(“A Tickets”)
if not A.empty:
grid_options = configure_aggrid(A_tickets)
AgGrid(
A_tickets,
gridOptions=grid_options,
update_mode=GridUpdateMode.NO_UPDATE,
allow_unsafe_jscode=True, # Allows rendering of JavaScript
height=500,
width='100%',
)
else:
st.info("No A tickets available.")
This pretty much did the job for me…now when I am clicking the checkbox it is opening the info of ticket in a different tab 