1
0
-1

I am opening list grid from a button. Once I select rows from data list, selected rows are appearing in the list grid. How to set focus in one column when I close the data list.

  1. Bastiana

    The list itself is read only. What will happen after you "set focus on a column"? What is your end goal?

CommentAdd your comment...

2 answers

  1.  
    1
    0
    -1

    When I press enter after entering value in scan barcode field (Pic 1), it will open the list grid (Pic 2).   When I return from list grid after selecting rows, focus should back to scan barcode field itself. Please help.

    Pic 1.

    Pic 2

      CommentAdd your comment...
    1.  
      1
      0
      -1

      This might helps, at least, you know how to attach event binding.

      I'm using the showcase app, and the list grid id is "LG"

      FormUtil.getField("LG").change(function(){ console.log("someone did something"); });
      
      

      With this, you can then proceed to perform the next step.

        CommentAdd your comment...