Skip to content
This repository has been archived by the owner on Jul 24, 2019. It is now read-only.

More intuitive arrow navigation. #13

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

Commits on Aug 27, 2014

  1. More intuitive arrow navigation.

    Using the arrow keys to navigate elements, when editing the element value, will only work if the cursor is in the first or last position of the input element. 
    
    Example: When the entire input value is selected, hitting the right arrow will drop the cursor at the end of the input as you would expect it to. When the cursor is at the end of the input and you hit the right arrow, it will then move to the next element.
    gamekid committed Aug 27, 2014
    Configuration menu
    Copy the full SHA
    fbea89c View commit details
    Browse the repository at this point in the history

Commits on Sep 10, 2014

  1. Accepts multiple editors and 'noedit' attribute

    Use different editors per column.
    
    $('table').editableTableWidget({
        editor: [ 
            $('<textarea>'), // col 1
            $('#select_element').clone() // col 2
    ]}); 
    
    Also, use 'noedit' element to disable editing. 
    
    <td noedit='true'>No Edit</td>
    gamekid committed Sep 10, 2014
    Configuration menu
    Copy the full SHA
    e1b23a9 View commit details
    Browse the repository at this point in the history