Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[NEW-FEATURE] Customizable export/import in AxoData #126

Merged
merged 13 commits into from
Jul 25, 2023
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
6 changes: 6 additions & 0 deletions docfx/articles/data/AxoDataExchange.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,12 @@ With this option, buttons for export and import data will appear. After clicking

![Export](~/images/Export.png)

#### Custom export

You have the option to customize the exported files according to your preferences. This includes selecting specific columns and rows, choosing the desired file type, and specifying the separator. It's important to note that if you don't select all columns for export, importing the files may not be done correctly.

During the importing process, it is crucial to enter the same separator that was used during the export. If the default separator was used during the export, there is no need to make any changes.

For a better user experience, it is strongly recommended to clean the `Temp` directory when starting the application. The best way to do this is to add the following lines to the "Program.cs" file:

~~~ C#
Expand Down
13 changes: 10 additions & 3 deletions docs/api/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<link rel="stylesheet" href="../styles/custom.css">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<meta property="docfx:navrel" content="../toc.html">
<meta property="docfx:tocrel" content="../toc.html">
<meta property="docfx:tocrel" content="toc.html">

<meta property="docfx:rel" content="../">

Expand Down Expand Up @@ -67,7 +67,14 @@
</div>
</div>
<div role="main" class="container body-content hide-when-search">
<div class="article row grid">

<div class="sidenav hide-when-search">
<a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a>
<div class="sidetoggle collapse" id="sidetoggle">
<div id="sidetoc"></div>
</div>
</div>
<div class="article row grid-right">
<div class="col-md-10">
<article class="content wrap" id="_content" data-uid="">
<h1 id="ix-api-documentation">IX API Documentation</h1>
Expand All @@ -81,7 +88,7 @@ <h1 id="ix-api-documentation">IX API Documentation</h1>
<div class="contribution">
<ul class="nav">
<li>
<a href="https://github.com/ix-ax/AXOpen/blob/12-_NEW-FEATURE_Invokable_dialogues_from_PLC/docfx/api/index.md/#L1" class="contribution-link">Improve this Doc</a>
<a href="https://github.com/ix-ax/AXOpen/blob/dev/docfx/api/index.md/#L1" class="contribution-link">Improve this Doc</a>
</li>
</ul>
</div>
Expand Down
2 changes: 1 addition & 1 deletion docs/apictrl/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ <h1 id="ix-api-documentation">IX API Documentation</h1>
<div class="contribution">
<ul class="nav">
<li>
<a href="https://github.com/ix-ax/AXOpen/blob/12-_NEW-FEATURE_Invokable_dialogues_from_PLC/docfx/apictrl/index.md/#L1" class="contribution-link">Improve this Doc</a>
<a href="https://github.com/ix-ax/AXOpen/blob/dev/docfx/apictrl/index.md/#L1" class="contribution-link">Improve this Doc</a>
</li>
</ul>
</div>
Expand Down
Loading