You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@superset.apache.org by GitBox <gi...@apache.org> on 2022/11/01 08:32:33 UTC

[GitHub] [superset] blue-lm commented on issue #21829: export to .CSV in embedding superset not working

blue-lm commented on issue #21829:
URL: https://github.com/apache/superset/issues/21829#issuecomment-1298211338

   Looks like the issue is in the SuperSetClient.ts file? A hiddenform is created in the code below, I guess we need to add the attributes that were suggested by @baguskna to this hiddenform? Not sure how to do this though:
   
   ```
   async postForm(url: string, payload: Record<string, any>, target = '_blank') {
       if (url) {
         await this.ensureAuth();
         const hiddenForm = document.createElement('form');
         hiddenForm.action = url;
         hiddenForm.method = 'POST';
         hiddenForm.target = target;
   ```
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@superset.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@superset.apache.org
For additional commands, e-mail: notifications-help@superset.apache.org