phuocng

Results 236 comments of phuocng

You can see a few ways to serialize the form data in this [StackOverflow](https://stackoverflow.com/questions/11661187/form-serialize-javascript-no-framework). Following is one of them: ```js const serializeForm = form => Array.from(new FormData(form)).reduce((r, [k, v]) =>...

Here is another way to serialize the form data: ```js const serializeForm = form => Object.fromEntries(new URLSearchParams(new FormData(form))) ```

@morrow95 I added 2 examples here https://github.com/form-validation/examples/tree/master/ajax-submit * `ajax-submit-axios.html` uses the [axios](https://axios-http.com) library * `ajax-submit-jquery.html` uses the [jQuery.ajax](https://api.jquery.com/jquery.ajax) method

@makranelhoucine The issue is the same as #1218 It is fixed in the latest code, and will be included in the next release.

Released in [v3.7.0](https://react-pdf-viewer.dev/updates/).

@HovhannesMkoyan You can use the [Cover component](https://react-pdf-viewer.dev/examples/display-the-thumbnail-of-a-given-page/).

@cordoba3030 Do you mean something likes this https://github.com/react-pdf-viewer/react-pdf-viewer/issues/291#issuecomment-706706691?

Yes, it's on the roadmap. I already had a similar request in https://github.com/react-pdf-viewer/react-pdf-viewer/issues/291#issuecomment-706706691

It's not possible at the moment. But you can create your own popover by looking at [its code](https://github.com/react-pdf-viewer/react-pdf-viewer/blob/master/packages/toolbar/src/MoreActionsPopover.tsx). ```js import * as React from 'react'; import { Button, LocalizationContext, Menu,...

Thanks for reporting the issue, @LucaHermann Are there any steps that I can reproduce the issue? Can you fork this [sample project](https://codesandbox.io/s/react-pdf-viewer-forked-yc8ut)?