Jump to content

Sherzod

Moderators
  • Posts

    19683
  • Joined

  • Last visited

  • Days Won

    635

Everything posted by Sherzod

  1. Then 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/
  2. Hi, Which edition are you using?
  3. Give the name to the created component FHTMLMemo.Name := ....
  4. Ok, I will try to analyze it Best regards,
  5. Hi, One possible solution, try: UniHTMLMemo -> ClientEvents -> ExtEvents -> function afterrender: function afterrender(sender, eOpts) { sender.inputEl.el.dom.contentWindow.oncontextmenu = function(){ return false }; } Best regards,
  6. Hi, Please specify which edition and build you are using Best regards,
  7. Hi, You can use pagingBar.beforechange event for this: function pagingBar.beforechange(sender, page, eOpts) { } Or like in this post: http://forums.unigui.com/index.php?/topic/4425-grid-refresh-button/ me.pagingBar.getComponent("next").handler Best regards,
  8. Hi, Which edition and build are you using? Try to use maxWidth for this, for example: function reconfigure(sender, store, columns, oldStore, oldColumns, eOpts) { columns[0].maxWidth = 50; columns[1].maxWidth = 75; columns.forEach(function(el){el.flex=1}); } Best regards,
  9. Hi, UniDBTreeGrid -> Columns[idx] -> Menu -> MenuEnabled = False Best regards,
  10. Yes like in this post: http://forums.unigui.com/index.php?/topic/9842-mobile-form-titlebuttons-selectively-hide-show-how/&do=findComment&comment=51179 I tested it on ExtJS 6
  11. Hi, You can use the search on the forum, for example this post can help you: http://forums.unigui.com/index.php?/topic/6309-multiselect-unidbgrid-select-rows-programmatically/ Best regards,
  12. Hi, Can you try this approach for now ?: For example: procedure TUnimForm1.UnimFormShow(Sender: TObject); var I: Byte; begin I := 0; if Self.CloseButton.Visible then Inc(I); //closebutton "indx" Self.TitleButtons[0].Caption := 'New Title'; UniSession.AddJS(Self.Name + '.titlebar.getAt('+ IntToStr(I) +').setText("New Title")'); end; Best regards,
  13. Hi, I'm sorry, it seems I did not correctly understand your question, please can you clarify again ?!
  14. Hi Erich, I couldn't reproduce your issue, can you make a simple testcase for this ?! Best regards,
  15. Hi, Ok, I will try to analyze your requests, Which build are you using?
  16. Hi, if I understand you correctly, maybe you just need to use a callback ?
  17. Hi, Yes, sorry, this is an old post, and after that much has changed, added. Have you seen examples relating to Grid ?! For example: \FMSoft\Framework\uniGUI\Demos\Desktop\GridMultiSelect \FMSoft\Framework\uniGUI\Demos\Desktop\GridMultiSelect - Checkbox
  18. Can you try this ?: pos.column changed to pos.colIdx Ext.override(Ext.view.Table, { walkCells: function(pos, direction, e, preventWrap, verifierFn, scope) { var grid = pos.view.headerCt.grid; if ((direction == 'right' && grid.columnManager.columns[pos.colIdx + 1]) || (direction == 'left' && grid.columnManager.columns[pos.colIdx - 1]) || (direction == 'down' || direction == 'up')) { return this.callParent(arguments); } else { return false; } } });
  19. Hi, Can you make a simple testcase for this ?! Best regards,
  20. Sorry, can you make a simple testcase for this ?!
  21. Hi, Sorry, can you clarify your question, issue ?!
  22. Hi, What exception did you get ?!
  23. Hi, One possible solution I think, using validitychange event for this: 1. CustomCSS: .isValid { border-color:green; } 2. function validitychange(sender, isValid, eOpts) { var me=sender.inputEl; if (isValid) { me.addCls('isValid') } }
×
×
  • Create New...