Nirlan Posted September 24, 2014 Posted September 24, 2014 Delphi XE6 uniGUI 0.97 1080 - 64 bits I use this to position the correct column to open the form. function store.load(sender, records, successful, eOpts){ sender.grid.getSelectionModel().setCurrentPosition({row: 1, column: 3}); } How do I which also is in edit mode? thanks Quote
Administrators Farshad Mohajeri Posted September 25, 2014 Administrators Posted September 25, 2014 function store.load(sender, records, successful, eOpts) { sender.grid.getSelectionModel().setCurrentPosition({row: 1, column: 3}); var p = sender.grid.getPlugin('uniCellEditor'); if (p) p.startEdit(1 ,3); } 1 Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.