Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion _data/product_version.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
useGroupedVersion: true

version_info_list:
- value: latest version
- value: latest version(3.0.0)
- value: 3.x
- value: 2.x
child:
- 2.1
Expand Down
1 change: 0 additions & 1 deletion guides/mrz-scanner-customization.md
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,6 @@ The **`MRZResultView`** user interface displays the parsed MRZ results as well a

7. **`onCancel`** - set a callback function to be executed upon cancelling the MRZ Scanner process *when the scanner is launched with a static file instead of the default camera UI*. When the cancel button is clicked, the MRZ result is discarded and the user is redirected back to the landing page. However, if you wish for a different behaviour than going back to the landing page, then this callback is where you define the behaviour that you are looking to implement. Read more on how to implement this callback in the [**`MRZResultViewConfig`**]({{ site.api }}mrz-scanner.html#mrzresultviewconfig) section of the API reference.


### Using the `MRZResultViewConfig`

Now that we have learned about the properties of the [**`MRZResultViewConfig`**]({{ site.api }}mrz-scanner.html#mrzresultviewconfig) interface, let's now demonstrate how to use it in a simple code snippet:
Expand Down
2 changes: 1 addition & 1 deletion guides/mrz-scanner-v2.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -261,4 +261,4 @@ Here is a quick breakdown of the constituent UI elements of the result view, con

Now that you got the most basic functionality of the MRZ Scanner up and running, it's time to explore the many ways in which the MRZ Scanner can be used, including customization and the ability to read directly from static images and PDFs. To learn more about those two topics, please visit the following articles

- [Customizing the MRZ Scanner]({{ site.guides }}mrz-scanner-customization-v2.0.html)
- [Customizing the MRZ Scanner]({{ site.guides }}mrz-scanner-customization-v2.0.html)
8 changes: 4 additions & 4 deletions guides/mrz-scanner.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,6 @@ permalink: /guides/mrz-scanner.html

This user guide will walk you through a Hello World sample web application that scans MRZ documents using the MRZ Scanner JavaScript Edition SDK. We recommend using this sample as a reference when creating your own application.

> [!TIP]
> Please visit the [Introduction]({{ site.introduction }}index.html) page to learn about the MRZ document formats, the architecture of the MRZ Scanner with respect to other Dynamsoft products, and the system requirements of the MRZ Scanner JavaScript Edition.

## License

### Trial License
Expand All @@ -35,7 +32,10 @@ If you are fully satisfied with the solution and would like to move forward with

## Quick Start - Including the Library

As mentioned previously, the purpose of this guide is to help you implement a Hello World application using the MRZ Scanner solution. To showcase this, we will be using vanilla JS. You can find the full code in the [samples Github repo](https://github.com/Dynamsoft/mrz-scanner-javascript).
> [!TIP]
> Please visit the [Introduction]({{ site.introduction }}index.html) page to learn about the MRZ document formats, the architecture of the MRZ Scanner with respect to other Dynamsoft products, and the system requirements of the MRZ Scanner JavaScript Edition.

The purpose of this guide is to help you implement a Hello World application using the MRZ Scanner solution. To showcase this, we will be using vanilla JS. You can find the full code in the [samples Github repo](https://github.com/Dynamsoft/mrz-scanner-javascript).

The first step before writing the code is to include the SDK in your application. You can simply include the SDK by using the precompiled script, but you can also build the SDK from source yourself.

Expand Down