Skip to content

DevExpress/dotnet-eud

Repository files navigation

DevExpress End-User Documentation

This article explains how to clone DevExpress End-User documentation sources and how to create your own documentation websites and help files for projects based on DevExpress technologies. You can also find a link to a sample pre-built website.

For Developer Documentation with API Reference see https://docs.devexpress.com.

The Scope

DevExpress products for WinForms and ASP.NET WebForms/MVC.

Licensing

By accessing this repository, you agree to the terms of the DevExpress End-User Documentation License Agreement.

How to View Content

Do one of the following to view the End-User Documentation content:

  1. Browse this repository's content directly. Start with index.md.
  2. View the sample pre-built website at devexpress.github.io/dotnet-eud.
  3. Build PDF files.

Document Format and Supported Output Types

Documents in this repository are written in markdown. You can manually copy the information to your own help file.

The repository also includes a docfx.json file. You can use DocFX and wkhtmltopdf to convert this file from a set of topics to an HTML website or a PDF file.

Build an HTML Website

Follow the steps below to create a documentation website for your application.

  1. Download and install the latest version of DocFX.

  2. Copy the repository to your computer and checkout the branch corresponding to the version of DevExpress controls your application uses. Do not use the master branch because it represents the version currently under development.

    git clone https://github.com/DevExpress/dotnet-eud.git
    git switch 20.1
    

    If you do not have Git installed, use the GitHub web interface to select the branch and then download and extract the ZIP archive.

    Download ZIP

  3. You can make the following changes to the documentation, or skip this step if you want to reuse the end-user documentation as is:

    • remove unnecessary files;
    • add new documents to your application;
    • change screenshots to match your app's UI;
    • create a custom DocFX template.

    You should update the toc.yml (table-of-content) files if you added or removed topics.

  4. Open a console window, change the current directory to the repository root folder and call the DocFX executable with the following parameters: build and the path to docfx.json in the downloaded dotnet-eud repository. DocFX will place the generated documentation content into the _site folder. Add the --serve switch to preview the generated website at http://localhost:8080 once the build process is complete.

    docfx.exe build ../dotnet-eud/docfx.json --serve
    
  5. Deploy the created documentation to a web server or browse the documentation directly from local file system. Since DocFX creates static HTML files only, no additional deployment or configuration steps are required.

Build Printer-Friendly PDF Files

If your end users require a printed version, you can build a PDF file like this:

  1. Ensure that you can successfully build a website with DocFX.

  2. Download and install wkhtmltopdf.

  3. In the folder with docfx.exe, open a console window and add the wkhtmltopdf executable path to the %PATH% environment variable:

    set PATH=%PATH%;C:\Program Files\wkhtmltopdf\bin
    
  4. Build pdf:

    docfx.exe pdf ../dotnet-eud/docfx.json
    

This generates a _pdf subfоlder with a PDF file for each included table-of-contents file. Note that this is a time-consuming process.

Troubleshooting

Below are the common issues you can face when building this repository's documentation.

  • The build process fails with the System.IO.PathTooLongException exception

    Reduce your working directory's full path (move the repository closer to a drive root).

    See also: dotnet/docfx#156

  • The wkhtmltopdf is a prerequisite when generating a PDF error occurs when creating a PDF

    Ensure that wkhtmltopdf is installed and its executable path is correctly added to the %PATH% environment variable.

    See also: Generate PDF Documentation

  • The table of contents is not displayed when browsing the generated documentation from the file system

    Your browser security configuration may restrict executing the JavaScript code that accesses your local files (the table of contents is in a separate toc.html file when using the default DocFX template). In this case, you can use the statictoc template instead. To switch to this template, add --template statictoc to the docfx.exe parameters:

    docfx.exe build ../dotnet-eud/docfx.json --template statictoc
    

    The table of contents is embedded into each topic with this template which increases the build time and HTML file sizes. Alternatively, you can override the browser's restrictions (which may be unsecure). For example, Google Chrome and Microsoft Edge accept the --allow-file-access-from-files command line switch which allows loading local files.

    We recommend you to use the --serve DocFX switch to preview documentation, and then share it with end users via a web server instead of browsing the file system.

If your issue is not listed, you can submit a new issue to this repository or contact us via the DevExpress Support Center. You can search the DocFX issues list, or try building the docfx-seed sample documentation project to check if your issue is specific to this repository.

Versions 17.1 and Earlier

If you require End-User documentation for v17.1 or earlier, download End-User Documentation Installer containing CHM and PDF files. Markdown is not available for these versions.

Version Installer
v17.1 DevExpressEndUserDocs171.exe
v16.2 DevExpressEndUserDocs162.exe
v16.1 DevExpressEndUserDocs161.exe
v15.2 DevExpressEndUserDocs152.exe
v15.1 DevExpressEndUserDocs151.exe
v14.2 DevExpressEndUserDocs142.exe
v14.1 DevExpressEndUserDocs141.exe
v13.2 DevExpressEndUserDocs132.exe
v13.1 DevExpressEndUserDocs131.exe
v12.2 DevExpressEndUserDocs122.exe
v12.1 DevExpressEndUserDocs121.exe

You are free to download these files and distribute them to your end users. However, Developer Express Inc. has the right to change or remove these files without notice.