Devika T V
Devika T V
Hi @filmaj I am still having the same issue even after only using`views.update` only
I see But in the docs I can only see examples of views.update API https://slack.dev/bolt-python/concepts Could you please provide me any examples of using ack() to manipulate modals ?
Hi @seratch Same issue with error (We had some trouble connecting), views are being updated after 5 sec The whole thing works fine but with delay and that error displayed...
So I want a second view on view submission of a modal before the end processing of data For that I used ack(response_action="update", view= updated_view) only instead of web client...
I can see the second view if I am using any listeners inside first view and use web client API But then the submit button will be there doing nothing...
Hi @seratch Could you please help ?
Sure Please check the below code snippet ``` @app.command("/editticket") def open_ticket_modal(ack, body, client): ack() res=client.views_open( trigger_id=body["trigger_id"], view={ "type": "modal", "callback_id": "submit_ticket", "title": {"type": "plain_text", "text": "Edit Ticket"}, "blocks": [ ]...