Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 01/29/19 in all areas

  1. Hi In the attachment a simple example how to send a sms text message. In this example is use www.bulksms.com for sending my sms messages but you can have you're own one if you want. Every sms provider has his own url for sending messages, in this case you see the url from bulksms. So in you're own case you have to see the documentation of the sms provider. Most sms providers have also mail-to-sms, but for me this is a simple low-cost solution to create you're own 2FA. Regards Peter SendSMS.zip
    1 point
  2. I think we need more documentation about client alignment in order to make more responsive applications.
    1 point
  3. Yes, Before unigui handle request you will process it and show result instead of open mainform.
    1 point
  4. Hello skafy, In your sample, you are creating the controls in UniFormShow Event procedure TMainForm.UniFormShow(Sender: TObject); begin ... but if you create the controls in UniFormCreate then tab works ok: procedure TMainForm.UniFormCreate(Sender: TObject); var I: Integer; Edit: TUniEdit; begin for I := 0 to 10 do begin Edit := TUniEdit.Create(Self); edit.Parent:= panel1; edit.Align:= alTop; edit.FieldLabel:= I.ToString; edit.TabOrder:= I; end; end;
    1 point
  5. All thanks to @Sherzod and @estrify
    1 point
  6. Example the latest version uniGui. Serverside its worked. https://github.com/marlonnardi/extjs-ux-paging-toolbar-resizer/blob/master/ux/PagingToolbarResizer.js function beforerender(sender, eOpts) { if (sender.pagingBar) { sender.removeDocked(sender.pagingBar, true); sender.addDocked({ dock: 'bottom', items: [Ext.create('Ext.PagingToolbar', { pageSize: sender.store.pageSize, store: sender.store, displayInfo: true, displayMsg: 'Visualizando {0} - {1} de <b>{2}</b>', emptyMsg: "Não há registros", plugins: Ext.create('Ext.ux.PagingToolbarResizer', { displayText: 'Registros por página', options: [25, 50, 100, 150, 200] }) })] }); } } Visit my Store https://store.falconsistemas.com.br PageSizeExtension.rar
    1 point
  7. Note, I've now created a github repo with the code and the fixes I made. It is available here.
    1 point
  8. You have 266 fixes for different properties in CustomCSS: http://forums.unigui.com/index.php?/search/&amp;q=CustomCSS I think that good idea is to collect many of them into one or several non-visible components. Something like TJvNavPaneStyleManager from Jedi components you can see in attach. I think that is possible and not too hard, and could significantly extend the display settings of components.
    1 point
  9. You must assign a name to the component 1. beforeInit: ... newUniLabel.Name := 'newUniLabel'; // <----------------------- newUniLabel.AutoSize := False; newUniLabel.Width := 200; newUniLabel.ClientEvents.Enabled := True; newUniLabel.ClientEvents.UniEvents.Values['beforeInit'] := 'function (sender, config) {config.cls="myCls"}'; ...
    1 point
×
×
  • Create New...