kirill

Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Author
    Replies
  • in reply to: After click button refresh – resets current page! #86813
    kirill
    Participant

    Thanks, Tony!
    It’s really what I need! It’s working!

    in reply to: focusing on grid without clicking on it! #85624
    kirill
    Participant

    Uter said:

    I would love to see such a feature – I would need it also.

    I want to use Hotkeys to jump to the rows (Example: Hitting CTRL + 1 would set Focus cell 1 [because I’m using cell-editing] in row 1).

    Does someone have experience with such a topic ?

    Or does anyone have some tips for me ?

    cherrs,

    Uter


    I’m look through file grid.celledit.js and understand that editCell(iRow,iCol, ed, fg) – is exactly that it I need!

    I’m writing this:

    loadComplete: function(){
    var grid = jQuery(‘#grid_variant’);

    grid.editCell(1,1,true,true);
    }

    And select cell (1,1).

    Uter You may type e.g. so:

    $(‘body’).keydown(function(e){
    if(e.keyChar == YOU_KEY)
    {
    var grid = jQuery(‘#grid_variant’);

    if(grid.children().length)
    grid.editCell(1,1,true,true);
    }
    });

    But now I don’t, how can I blur selection?!
    I need it also!
    Is any body some suggestion ?

Viewing 2 replies - 1 through 2 (of 2 total)

Stay connected with us in your favorite flavor!