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

Introducing interface for DataModel #1038

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

Commits on Jul 17, 2022

  1. Can change grid datamodel

     Simple refactoring, just introducing interface for datamodel. This change is without bc break. Now it is possible do to change datamodel with new method setDataModel.
    VojtechBuba committed Jul 17, 2022
    Configuration menu
    Copy the full SHA
    eab3226 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1 from peckadesign/can-switch-datamodel

     Can change grid datamodel
    VojtechBuba committed Jul 17, 2022
    Configuration menu
    Copy the full SHA
    6b9e24d View commit details
    Browse the repository at this point in the history

Commits on Sep 12, 2022

  1. Fixing missing quotes in CSS attribute selectors. When data attribute…

    … has a value eg. with `.`, the jQuery sizzle engine throws an error when there are no qutes around the value.
    zipper committed Sep 12, 2022
    Configuration menu
    Copy the full SHA
    0d5edc6 View commit details
    Browse the repository at this point in the history

Commits on Sep 19, 2022

  1. Merge pull request #2 from peckadesign/fix-missing-quotes

    Fixing missing quotes in CSS attribute selectors
    zipper committed Sep 19, 2022
    Configuration menu
    Copy the full SHA
    6a0595d View commit details
    Browse the repository at this point in the history

Commits on Oct 5, 2022

  1. Defining blocks for column actions and inline add/edit buttons

    - defining blocks for column actions and inline add/edit buttons
    - these blocks can be overwritten and custom render can be used (change order, grouping of buttons, etc.)
    Spilky committed Oct 5, 2022
    Configuration menu
    Copy the full SHA
    5b2070b View commit details
    Browse the repository at this point in the history
  2. Merge pull request #3 from peckadesign/buttons-blocks

    Defining blocks for column actions and inline add/edit buttons
    Spilky committed Oct 5, 2022
    Configuration menu
    Copy the full SHA
    df2d500 View commit details
    Browse the repository at this point in the history

Commits on Oct 12, 2022

  1. Fixing custom classes on checkbox in inline edit

    - `\Nette\Forms\Controls\Checkbox::getControl` returns label part and control part like one ``\Nette\Utils\Html` and then `$control->getControl()->getAttribute('class')` is always null and custom defined classes are always overwritten by `$control->setAttribute('class', 'form-control input-sm form-control-sm');`
    - fixed by using `\Nette\Forms\Controls\BaseControl::getControlPrototype` which always returns only control part without label part
    Spilky committed Oct 12, 2022
    Configuration menu
    Copy the full SHA
    d22f09e View commit details
    Browse the repository at this point in the history

Commits on Oct 14, 2022

  1. Merge pull request #4 from peckadesign/inline-edit-checkbox-classes-bug

    Fixing custom classes on checkbox in inline edit
    Spilky committed Oct 14, 2022
    Configuration menu
    Copy the full SHA
    7ec5d9f View commit details
    Browse the repository at this point in the history