Jump to content

Sherzod

Moderators
  • Posts

    19803
  • Joined

  • Last visited

  • Days Won

    643

Everything posted by Sherzod

  1. Yes, I think this can be done by adding these iconic fonts to the Delphi IDE
  2. They are included in the framework \FMSoft\Framework\uniGUI\ext-6.5.3\build\...
  3. Hi, First of all, please visit here: http://forums.unigui.com/index.php?/topic/6291-new-users-please-adjust-your-forum-email-address/
  4. Hi, Thanks for the update. Can you make a simple testcase for your issue?!
  5. First of all please visit here: http://forums.unigui.com/index.php?/topic/6291-new-users-please-adjust-your-forum-email-address/
  6. Hi, Are you using a trial edition?!
  7. Hi, I think is it possible, But I think it's better for you to create a derived component
  8. Hi, http://www.unigui.com/doc/online_help/deployment_options.htm
  9. Hi, One possible solution: 1. UnimDBListGrid -> ClientEvents -> UniEvents -> function beforeInit(sender, config) { config.cls='customHeader'; } 2. UniServerModule -> CustomCSS: .customHeader .x-toolbar { background-color: red; background-image: none; border-color: red; color: white; }
  10. Hi, You can use Grid-ActionColumn http://forums.unigui.com/index.php?/topic/9621-unigui-102-beta/page-3&do=findComment&comment=52570 \FMSoft\Framework\uniGUI\Demos\Desktop\Grid - ActionColumn \FMSoft\Framework\uniGUI\Demos\Desktop\GridImages
  11. Hi, procedure TMainForm.UniFormCreate(Sender: TObject); begin UniDateTimePicker1.DateTime := 0; end;
  12. Hi, We can use this approach for now, but this is only if there is one password field on the form, but we can change it to all fields and optimize function afterrender(sender, eOpts) { Ext.DomHelper.insertAfter( sender.triggerWrap, { id: 'capslock_td', tag: 'span', html: '<i class="fa fa-warning">CapsLock ON!</i>' }, true); capslock_td.hidden = true; Ext.onReady(function() { function _capsLockDetect(e) { if (!e) e = window.event || null; if (typeof(oncapslock) != "function" || !e) return; var n = e.keyCode ? e.keyCode : e.charCode; if (e.type == "keypress") { var c = String.fromCharCode(n); var cUC = c.toUpperCase(); var cLC = c.toLowerCase(); if (cUC != cLC) oncapslock((e.shiftKey && cLC == c) || (!e.shiftKey && cUC == c)); } else if (e.type == "keydown" && n == 20) oncapslock(false); } if (document.addEventListener) { document.addEventListener("keypress", _capsLockDetect, false); document.addEventListener("keydown", _capsLockDetect, false); } else if (document.attachEvent) { document.attachEvent("onkeypress", _capsLockDetect); document.attachEvent("onkeydown", _capsLockDetect); } else document.onkeypress = document.onkeydown = _capsLockDetect; window.oncapslock = function(on) { Ext.get("capslock_td").dom.hidden = !on } }); } Best regards,
  13. Can you check with this change too?: function beforeInit(sender, config) { config.fieldDefaults = { style: 'padding: 5px; height: 35px' } } function radioGroup.beforeInit(sender, config) { config.fieldDefaults = { style: 'padding: 5px; height: 35px' } }
  14. Although, this is also based on version 6
  15. Ok, I tested on ExtJS 6 I will check
  16. Sherzod

    FastReport

    Hi, Have you seen demo examples related to FastReport? \FMSoft\Framework\uniGUI\Demos\Desktop\FastReport...
  17. Can you try this approach for now ? radioGroup.beforeInit function radioGroup.beforeInit(sender, config) { config.fieldDefaults = { style: 'padding: 5px; height: 35px' } }
  18. Can you make a simple testcase for this?
  19. Or, maybe you wanted this: HEADER -> + sender.getColumns()[0].text +
  20. Sorry, maybe I do not quite understand what you wanted Maybe this post can help you!?: http://forums.unigui.com/index.php?/topic/6712-overflowing-text-grid-cell-tooltip/&do=findComment&comment=34164
  21. Thank you, Do you want to get it on the client side, can you give more info?
  22. Hi, First of all, please adjust your forum email address: http://forums.unigui.com/index.php?/topic/6291-new-users-please-adjust-your-forum-email-address/
  23. Hello, Which edition and build are you using?!
  24. First of all, please adjust your forum email address: http://forums.unigui.com/index.php?/topic/6291-new-users-please-adjust-your-forum-email-address/
×
×
  • Create New...