Jump to content

Sherzod

Moderators
  • Posts

    19684
  • Joined

  • Last visited

  • Days Won

    635

Everything posted by Sherzod

  1. Hi, TUniPieSeries -> Highlight -> Enabled = False
  2. Hi, Which edition are you using?! Have you seen this demo?: \FMSoft\Framework\uniGUI\Demos\Touch\Detect Platform
  3. Hi, Can you make a simple testcase for this?!
  4. Hi, Are you using UniSF Component ? http://forums.unigui.com/index.php?/topic/7569-unisf-component/
  5. Hi, Can help you: http://forums.unigui.com/index.php?/topic/9762-make-enter-behave-like-a-button-click/&do=findComment&comment=50662
  6. Hi, You can follow these instructions, for example for total field: 1. FDTABLEtotal -> FieldKind = fkCalculated 2. FDTABLE -> OnNewRecord procedure TMainForm.FDTABLENewRecord(DataSet: TDataSet); begin FDTABLE.FieldByName('total').AsFloat := 0; end; 3. FDTABLE -> OnCalcFields procedure TMainForm.FDTABLECalcFields(DataSet: TDataSet); begin with FDTABLE do FieldByName('total').AsFloat := FieldByName('price').AsFloat * FieldByName('quantity').AsInteger; UniDBGrid1.RefreshCurrentRow(); end;
  7. Please visit here: http://www.unigui.com/support/support-portal
  8. Hello You are right, Give us time to figure it out.
  9. Hi, Which build, DB are you using? Have you a simple example for this?
  10. Better you should use OnDblClick event In this case you can try this: function afterrender(sender, eOpts) { if (sender.headerCt) { sender.headerCt.el.on('dblclick', function(e) { e.stopEvent(); }); } }
  11. Hi, Can you explain in more detail? What problem do you have?
  12. Hi, Which build are you using? How?
  13. Hi, One possible solution: function beforeInit(sender, config) { config.listConfig = { maxHeight: 600 //default 300 } } Best regards,
  14. Hi, Can help you: http://forums.unigui.com/index.php?/topic/9908-how-to-tunidbnavigator-onclick-discard-default-event/
  15. Hi, Have you seen this demo example...?: \FMSoft\Framework\uniGUI\Demos\Touch\DBGridImages
  16. Hi, Can you make a simple testcase for this, by indicating what and how you wanted?
  17. OK, 1. Remove: function afterlayout function afterlayout(sender, layout, eOpts) { //layout.config ({ // multi : true //}); } 2. Add: UniPanel1 -> ClientEvents -> UniEvents -> function beforeInit: function beforeInit(sender, config) { config.layout = { type: 'accordion', titleCollapse: false, animate: true, activeOnTop: true, multi: true } }
  18. If it's not difficult for you, make a simple testcase
  19. Hi, UniServerModule -> ServerMessages -> LoadingMessage = 'Custom message...'
×
×
  • Create New...