Jump to content

multimesut

uniGUI Subscriber
  • Posts

    114
  • Joined

  • Last visited

  • Days Won

    2

multimesut last won the day on October 17 2018

multimesut had the most liked content!

1 Follower

Recent Profile Visitors

1495 profile views

multimesut's Achievements

Active Member

Active Member (3/4)

4

Reputation

  1. Merhaba, Ben aktif olarak kullanıyorum. ( uniGUI + Radcore ) Delphi ile web uygulaması geliştirmek ayrıcalıktır Sorularını sorabilirsin. İyi günler..
  2. Hi, There were components that I wrote myself. radcore matched perfectly. It generally uses unigui infrastructure. it doesn't cause any problems.
  3. We made our project using uniGUI + Radcore. Cloud PBX software running on Linux.
  4. I use RadCORE in my project. Especially its mobile compatibility is successful. Congratulations Flávio!
  5. I'm using Debian 8/9 no problem.
  6. son sürümde sorun düzeldi. Teşekkürler
  7. The problem has improved in the latest release. Thanks
  8. Merhaba, Unisession üzerinden CSV çıktısı veriyorum. Chrome üzerinde bu dosya "File.csv" şeklinde inmesi gerekirken "File.txt" olarak iniyor. Yani uzantı CSV olacağına TXT oluyor. Sorun nasıl çözebilirim? Teşekkürler.. Örnek 1; unisession.SendFile(UniServerModule.FilesFolderPath + '\test\test.csv','File.csv'); Örnek 2; procedure TYoneticiFirmalar.btnIndirClick(Sender: TObject); var S : TStringStream; begin S:=TStringStream.Create('Some text here....'); try UniSession.SendStream(S, 'File.csv'); finally S.Free; end; end; Sonuç;
  9. Bu sorun bendede oluyor. Gridlerin loading mesajını kapatırsanız düzeliyor
  10. hi, you can fix it with mysql. MainModule; procedure TUniMainModule.UniGUIMainModuleCreate(Sender: TObject); begin MyQuery2.SQL.Clear; MyQuery2.SQL.Add('INSERT INTO sessions (sessionid,logindate) VALUES (:sessionid,:logindate)'); MyQuery2.Params.ParamByName('sessionid').Value:=UniSession.SessionId; MyQuery2.Params.ParamByName('logindate').Value:=Now; MyQuery2.ExecSQL; end; procedure TUniMainModule.UniGUIMainModuleDestroy(Sender: TObject); begin MyQuery2.SQL.Clear; MyQuery2.SQL.Add('DELETE FROM sessions where sessionid=:sessionid'); MyQuery2.Params.ParamByName('sessionid').Value:=UniSession.SessionId; MyQuery2.ExecSQL; end; SQL; DROP TABLE IF EXISTS `sessions`; CREATE TABLE `sessions` ( `sessionid` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `logindate` datetime(0) NULL DEFAULT NULL, `killsession` tinyint(1) NULL DEFAULT 0 ) ENGINE = MEMORY CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Fixed;
  11. yes, it works. thanks. but it will be a manual method. not detecting limit value. Can't do it automatically in the old version. I was using the code below. JSAddListener('store.beforeload', JSFunction('store, operation, eOpts', 'if (operation.params) {operation.params.limit = operation.limit;}') );
  12. hello @Sherzod, did you test?
  13. Yes, same problem. PageSize is failing for Reflesh. does not work in solution. (operation.params.limit) procedure TMainForm.UniButton1Click(Sender: TObject); begin CDS.Active:=false; end; procedure TMainForm.UniButton2Click(Sender: TObject); begin CDS.Active:=true; end;
×
×
  • Create New...