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

Closes #26 - Enable Filtering on async tables #27

Open
wants to merge 6 commits into
base: master
Choose a base branch
from

Commits on Jun 21, 2019

  1. Closes JuliaComputing#26 - Enable Filtering on async tables

    Enables default ag-grid style filtering on async tables by creating a filter function from filterModel data.
    jekelsc committed Jun 21, 2019
    Configuration menu
    Copy the full SHA
    bb0cf67 View commit details
    Browse the repository at this point in the history
  2. Closes JuliaComputing#26 - Only wrap with invokelatest on the first use

    Minor adjustment to return the invokelatest wrapped filter on the first use. The world will be ready for the actual function on subsequent uses.
    jekelsc committed Jun 21, 2019
    Configuration menu
    Copy the full SHA
    11b011f View commit details
    Browse the repository at this point in the history

Commits on Jun 22, 2019

  1. Closes JuliaComputing#26 - Cleanup and partial range handling

    Added code to sanitize column access and partially specified ranges. Optimize dates via preparsing.
    jekelsc committed Jun 22, 2019
    Configuration menu
    Copy the full SHA
    00b2e1f View commit details
    Browse the repository at this point in the history

Commits on Jun 23, 2019

  1. Closes JuliaComputing#26 - Better handling of embedded quotes

    Handle column names and search text with quote characters more defensively.
    jekelsc committed Jun 23, 2019
    Configuration menu
    Copy the full SHA
    029ff94 View commit details
    Browse the repository at this point in the history

Commits on Jun 24, 2019

  1. Closes JuliaComputing#26 - Build logic using Expr

    Updated to generate expressions directly rather than parsing a string.
    jekelsc committed Jun 24, 2019
    Configuration menu
    Copy the full SHA
    68c54f1 View commit details
    Browse the repository at this point in the history

Commits on Jun 25, 2019

  1. Lose the OptionalExpr types

    @code_typed shows functions like build_date returning type Union{Missing, Expr} when not using OptionaExpr, but Any after a type assertion when using OptionalExpr. Type inference is better than type assertion if the code is correct I guess.
    jekelsc committed Jun 25, 2019
    Configuration menu
    Copy the full SHA
    40d9403 View commit details
    Browse the repository at this point in the history