Jump to content

Sherzod

Moderators
  • Posts

    19684
  • Joined

  • Last visited

  • Days Won

    635

Everything posted by Sherzod

  1. 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') } }
  2. Ok, we will try to make a simple testcase (a workaround)
  3. Hi, Can you try to use this approach ?!: UniDateTimePicker -> ClientEvents -> ExtEvents -> function keydown: function keydown(sender, e, eOpts) { if(e.keyCode == 110){ me = sender; e.preventDefault(); me.setRawValue(me.getRawValue() + '.'); } } Best regards,
  4. Hi, One possible solution, can you try this ?!: UniDBGrid -> ClientEvents -> ExtEvents -> function reconfigure: function reconfigure(sender, store, columns, oldStore, oldColumns, eOpts) { sender.headerCt.getMenu().items.each( function(item){ if (item.itemId != 'columnItem') item.hide() } ); } Best regards,
  5. Hi, http://www.unigui.com/doc/online_help/application-forms.htm http://www.unigui.com/doc/online_help/free-form.htm If the owner is a nil, then yes yes... If the owner is a nil ...
  6. Hi, Which edition and build are you using??! Best regards,
  7. Hi, You need to follow general application development principles to avoid memory leaks.
  8. Hi, Excuse me, why this decision does not suit you ?!
  9. Hi, Sorry, what type of message are you going to send?
  10. Sherzod

    TUniHTMLFrame

    Hi, 1 - this post can help you: http://forums.unigui.com/index.php?/topic/8733-print-unihtmlframe-content
  11. Hi, For example, fadeIn: UniPanel1.JSInterface.JSCode(#1'.el.fadeIn({duration: 1000});'); fadeOut: UniPanel1.JSInterface.JSCode(#1'.el.fadeOut({duration: 1000});'); And then use your logic...
  12. Hi, Which edition and build are you using? Best regards,
  13. Thank you, good night!
  14. Also, by adding Cls: AddStyle('white-space', 'pre');
  15. Hi, One possible solution, you can use &nbsp instead of the space... Best regards,
  16. Hi, Please, can you explain a little more, which mobile device, browser are you using ?
  17. Hi, For example like this: UniTreeView1.Items.AddChild(nil, 'Department A <span style="color: red; font-weight: bold;">(77)</span>'); Best regards,
  18. Hi, First of all, can you try to upgrade to the latest build ?
  19. Hi, For example: 1. CustomCSS: *.unselectable { -moz-user-select: -moz-none; -khtml-user-select: none; -webkit-user-select: none; -ms-user-select: none; user-select: none; } 2. FLbl := TUniLabel.Create(Self); FLbl.Parent := Self; FLbl.Font.Size := 20; FLbl.Left := 10; FLbl.Text := 'Hello There'; FLbl.JSInterface.JSCall('addCls', ['unselectable']); //<--------- Best regards,
×
×
  • Create New...