Jump to content

Sherzod

Moderators
  • Posts

    19654
  • Joined

  • Last visited

  • Days Won

    634

Everything posted by Sherzod

  1. I don't know why you want to use such code. Yes, you can try to use OnClick event instead
  2. This is normal behavior, because you are using OnSelectCell event
  3. Hello, Can you please specify which edition and build of UniGUI are you using?
  4. Which build are you using? Can you make a simple testcase for reproduce?
  5. Hi, Can you please clarify what problem do you have?
  6. Maybe this post will answer some of your questions:
  7. At the moment, I can not test for the above requirements. If it works, then of course you can use this event at the moment.
  8. Hi, How should we understand this? Can you expalin in more details?
  9. Hi, Which build are you using? Can you make a simple testcase for this?
  10. OK 1. Leave the Hint property blank 2. UniDBGrid -> ClientEvents -> ExtEvents -> function reconfigure(sender, store, columns, oldStore, oldColumns, eOpts): function reconfigure(sender, store, columns, oldStore, oldColumns, eOpts) { //for example actioncolumnIndx = 6, actionButtonIndx = 0, recordDataIndx = 0 columns[6].items[0].getTip = function(value, metadata, record, row, col, store) { return record.data[0] > 1500 ? 'Hint1' : 'Hint2'; } }
  11. Ok, I will check it again
  12. I think it's not an easy task!
  13. In this case, I think the best option would be if you will use an action column - "Show more info..."
  14. Hi, Sorry, can you explain in more details?
  15. ... UnimDBListGrid1.DataSource.DataSet.Last; UnimDBListGrid1.JSInterface.JSCode('Ext.defer(function(){'#1'.ensureVisible('#1'.getSelections()[0])}, 200);'); ...
  16. Hi Denis, I will try to analyze
  17. What is the problem? Can you make a simple testcase for this?
  18. Hi Denis, You can also select those fields in the main query, and not display these fields in the grid, and you can refer to them by the record.data[indx]
  19. Can you try this? function beforeInit(sender, config) { config.shouldHideDisclosure = function(record) { return record.data[8] == ""; }; }
×
×
  • Create New...