Jump to content

Sherzod

Moderators
  • Posts

    19759
  • Joined

  • Last visited

  • Days Won

    641

Everything posted by Sherzod

  1. Здравствуйте, Да, я понимаю. Если не используете триальную версию, Вы должны настроить email форума:
  2. Hello, Sorry, can you please specify, which edition and build of UniGUI are you using?
  3. Sorry for the late reply. Can you please explain in more details?
  4. UniDBGrid -> Columns -> Column[xx] -> Menu -> MenuEnabled = False ?
  5. Tell me by what logic do you want to change?
  6. Hello, You can use the OnGetText event of the TField to format the output.
  7. Hi, Can you please open a ticket in support portal?
  8. Hello, Can you please specify which edition and build of UniGUI are you using?
  9. Hello, What kind of example in the screenshot?
  10. Hi, Just not added as a Published. You can use like this at the moment: procedure TMainForm.UniFormCreate(Sender: TObject); begin TUniDBEdit(UniDBNumberEdit1).LayoutConfig... end;
  11. Hello, Thanks for the testcase. Need to analyze this behavior.
  12. Sherzod

    UniDbGrid

    Try this... function afterCreate(sender) { var grid = sender; sender.getView().on('scrollend', function(view, scrollX, scrollY) { var vTop = grid.view.el.getTop(), vBottom = grid.view.el.getBottom(), top, bottom, hHeight = grid.headerCt.getHeight(); Ext.each(grid.view.getNodes(), function(node) { if (!top && Ext.fly(node).getTop() > vTop) { top = grid.view.getRecord(node).data._r; } if (Ext.fly(node).getBottom() - Ext.fly(node).getHeight() < vBottom) { bottom = grid.view.getRecord(node).data._r; } }); if (top != 1) { top += 1; } bottom += 1; if (top == 1) { grid.getSelectionModel().select(0) } else if (bottom == grid.getStore().count()) { grid.getSelectionModel().select(grid.getStore().count()) } else { grid.getSelectionModel().select(Math.round((bottom + top) / 2)) } grid.ensureVisible(grid.getSelection()[0]); }); }
  13. Sherzod

    UniDbGrid

    I will analyze and try to give you a possible solution.
  14. Can you please specify which edition and build of UniGUI are you using?
  15. Please adjust your forum email address: http://forums.unigui.com/index.php?/topic/6291-new-users-please-adjust-your-forum-email-address/
  16. Hello, Please specify which edition are you using?
  17. Hi, Can you make a simple testcase? Then please indicate the sequence of actions, how to work with a testcase.
  18. Здравствуйте, http://forums.unigui.com/index.php?/topic/8414-questions-about-unidbgrid/&amp;do=findComment&amp;comment=47669
  19. You can assign your value to a new property ... procedure TMainForm.UniFormCreate(Sender: TObject); begin UniDBGrid1.JSInterface.JSAssign('needToSave', [True]); end;
  20. Здравствуйте, Вы установили UniGUI после установки Delphi?
×
×
  • Create New...