Jump to content

M477H13U

Members
  • Posts

    169
  • Joined

  • Last visited

Everything posted by M477H13U

  1. Hello Sherzod ! We also are in the need of such a functionnality! Any workaround ? (: Cheers,
  2. Hello, any news on that matter ? Regards, M477H13U
  3. Hey Sherzod, thanks for the answer !! There is a problem with editor's event : col.getEditor().on('keydown', function(field, e) { as it is never fired! Did I miss something ??:O But I managed to extract field value with this code, if anyone need it ! function reconfigure(sender, store, columns, oldStore, oldColumns, eOpts) { columns.forEach(function(col){ if(col.getEditor()){ console.log(col.getEditor()); sender.on('keydown', function(e, t, eOpts){ console.log(e.keyCode); if(e.keyCode == 115){ ajaxRequest(sender, '_keydown', ['val='+col.field.value]); } }) } }) } I am going to validate this with my manager and give you a feedback on that solution ! (:
  4. Thanks for the quick answer Looking forward to see your workaround
  5. Have you even open my project ? Everything is detailed in the header of the form .. Anyhow, here's the gif you asked
  6. Indeed, I am quiclkly editing a cell and by pressing my Key, I would like to extract the new value. It is done with TUniStringGrid.Cell[Row, Col] Is there a way to achieve the same thing with uniDBGrid ?
  7. Hello there! we found another issue on sorting. The aim is to apply a sorting profil to grid when it is opened. Currently we are simulating header click/sorting as following: UniSession.AddJS(UniDBGrid1.JSName+'.store.getSorters().add(new Ext.util.Sorter({property: 0,direction: ''ASC''}))'); It is working properly except for the first column of the grid. Data seems to be sorted but pictogramme is not showed. How could we do So ? Would you suggest another approach ? With the hope of reading you promptly,
  8. Hello there uniGUI ! Did you have the time to check my simple test case ? I am looking forward for a solution!
  9. Hello there ! Any news on that matter ? Regards,
  10. Hello Sherzod! Sorry for the delay, I did not had time to manage this issue. You can find bellow a testCase that highlight the issue I am talking about ! Can't wait to read you ! TestGridEdit+KeyDown.7z
  11. Just tested it with last trial build; same behavior !!!
  12. Aloha Sherzod and uniGUI users ! (: I just tested it with trial latest build and I have the same behavior ! :/ What do you suggest ? Regards,
  13. Hello Sherzod! you can find the testCase bellow ! Can't wait to read your reaction ! (: Regards, TestGridSorting.7z
  14. Hello Sherzod, Yeah I know this post, and yes my config.multiColumnSort is set to true. I think that this issue append when your datas are already sorted and that you sort request does not change it. In that case only, event multiColumnSort is not fired. Can you reproduce ? if not, I will make a testCase tomorrow! (I already tested it in a minimalist project). Regards,
  15. Hello UniGUI users ! (: I have a question concerning sorting.. at the moment, I cancel a specific sort like that: UniSession.AddJS(uniDBGrid1.JSName + '.getStore().sorters.remove('+IntToStr(UniDBGrid1.CurrCol)+');'); UniSession.AddJS(UniDBGrid1.JSName+'.getView().refresh();'); If it's the only sort that was on the grid, the order of aggregats does not change. Then if I wants to apply the same sort on the same column, sorting is indeed visible on the interface, but event UniDBGrid1MultiColumnSort is not fired.. is this normal behavior ? What can I do to force the fire of this event ? (We have our own logic so it is unfortunate if event is not fired..) Regards,
  16. Hello everyOnes ! (: I want to highlight the fact that when you have a grid with options [dgTitles, dgIndicator, dgColumnResize, dgColumnMove, dgColLines, dgRowLines, dgRowSelect, dgConfirmDelete, dgMultiSelect, dgAutoRefreshRow] the property UniDBGrid1.currCol is not update when you navigate with keyboard. I made a testCase to highlight this issue, attached to this post. Nb: Build 1458 here. Regards, testCurrentColumn.7z
  17. Hello everyones! (: I just noticed what seem to be an issue with column moving and sorting (Has not tested it on recent build; mine is 1458): Just take demo project GridColumnSort and add Grid Option "dgColumnMove". Then apply a sorting on second column. ThereAfter, take column three, and move it to second position. It is still second column that is sorted even though it is suppose to be the third one due to the column movement.. Any workaround ? Regards,
  18. RegisterComponents('DINO UniGUI', [TxUniDBComboBox]); fail to properly register component.. do you have any idea why ?
×
×
  • Create New...