Jump to content

Tokay

uniGUI Subscriber
  • Posts

    839
  • Joined

  • Last visited

  • Days Won

    19

Everything posted by Tokay

  1. переименуй название программы. оно у тебя с юнитом пободалось.
  2. Tokay

    vcl forms

    Try search on the forum, such topics already have discussed: http://forums.unigui.com/index.php?/topic/2179-help-for-those-who-want-to-convert-to-delphi-projects-unigui/
  3. Tokay

    UniDateTimePicker

    Fortunatelly it's not a big issue. I've redisigned the form.
  4. Tokay

    UniDateTimePicker

    I understand what's happend. I've used laLeft FieldLabelAlign and picker is too wide.
  5. Tokay

    UniDateTimePicker

    Selector looks like that here
  6. Tokay

    UniDateTimePicker

    A bit issue. Does it possible to sort years?
  7. Tokay

    UniDateTimePicker

    Thank you! Works as expected.
  8. Tokay

    UniDateTimePicker

    Wow! And how to do such mode?
  9. Tokay

    UniDateTimePicker

    Great solution! Does it possible to create only year selector?
  10. Does someone made friends TinyMCE 5 and UniGUI? All the great examaples on the forum uses 4th verion.
  11. Смотри примеры, исходники там всё есть: UniCalendarPanel1.Events.Clear; UniCalendarPanel1.Events.ItemFromId UniCalendarPanel1.Events.ItemFromInternalId
  12. Browsing in uniURLframe works fine, you can try it. If such behaviour fit for you.
  13. Tokay

    Firedac

    type THelpThread = class(TThread) private FSessionName: string; FDataSource: TDataSource; FSQL: string; protected procedure Execute; override; public property DataSource: TDataSource Read FDataSource Write FDataSource; property SessionName: string Read FSessionName Write FSessionName; property SQL: string Read FSQL Write FSQL; end; { THelpThread } procedure THelpThread.Execute; var Session: TUniGUISession; MainModule: TUniMainModule; i: integer; begin inherited; MakeQuery(FDataSource.DataSet as TFDQuery, FSQL, True); FDataSource.DataSet.Last; FDataSource.DataSet.First; Session := UniServerModule.GetSession(SessionName); MainModule := TUniMainModule(Session.UniApplication.UniMainModule); with TUniForm2(MainModule.GetFormInstance(TUniForm2)) do UniDBGrid1.DataSource := FDataSource end; This code works for me.
  14. как я понимаю, новый модуль и сессия должна подключатся уже к новой ноде. впрочем, лучше саппорт пусть ответит.
  15. You could not directly interacting with side site with help of ajax. Ajax could interact only with back (Delphi code), and back, I think, could interact with your other site in some way (websocket?).
  16. ты это можешь легко проверить. достаточно поставить бряк на разрушении mainmodule. думается пока сессия активная, то гиперсервер её никак не переключит в принципе
  17. Я так понимаю, что гиперсервер работает по сессиям а не по логинам. То есть пока сессия явно не завершится, то он считает что пользователь всё еще подключен к ноде и перебрасывать не другую его не стоит. Впрочем это легко проверить. Достаточно глянуть на куки сессии, там виден идентификтор.
  18. HI! We are using you UniSF components pack (registered), and found an issue with buttons drawing on uni_mac_yosemite theme. Does it possible to fix it? We using uniSF_Setup_1.1.1056.exe version.
  19. As far as I understand FmtSettings and PFmtSettings is the same things. But second is pointer to FmtSettings: PFmtSettings: PFormatSettings; FmtSettings: TFormatSettings; Found in samples: procedure TUniMainModule.UniGUIMainModuleCreate(Sender: TObject); begin with PFmtSettings^ do begin DateSeparator:='/'; CurrencyFormat:=0; CurrencyString:='$'; end; end;
  20. As far as I understand the clients uses local decimal separate options. Depends on what is set in the user's system/browser.
  21. I update to the last 1566 version and all works fine here: uptime (for now only in /server, but I added own realization) and memory calculation (without code changing). Thank you!
  22. This is not what I needed, but Ext.window.Window.override({constrainHeader:true}); done the things! Many thanks!!!
  23. Please add if possible in the future release option like UniMainModule -> ConstrainForms = True, but with config.constrainHeader=true. It seems that this feature is neceseery for all forms, but there are no possibility to add it globally on the app to all forms.
  24. AFAIK UniGUI does not uses java at all.
×
×
  • Create New...