
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!
Recent Profile Visitors
1495 profile views
multimesut's Achievements

Active Member (3/4)
4
Reputation
-
faktoral started following multimesut
-
Merhaba, Ben aktif olarak kullanıyorum. ( uniGUI + Radcore ) Delphi ile web uygulaması geliştirmek ayrıcalıktır Sorularını sorabilirsin. İyi günler..
-
Hi, There were components that I wrote myself. radcore matched perfectly. It generally uses unigui infrastructure. it doesn't cause any problems.
-
-
responsiveness uniGUI Responsiveness with RadCORE !!!
multimesut replied to mikromundo's topic in General
I use RadCORE in my project. Especially its mobile compatibility is successful. Congratulations Flávio!- 59 replies
-
- 1
-
-
- responsividade
- responsive
-
(and 5 more)
Tagged with:
-
I'm using Debian 8/9 no problem.
-
son sürümde sorun düzeldi. Teşekkürler
-
The problem has improved in the latest release. Thanks
-
Same problem.
-
multimesut started following Unisession SendFile CSV Sorunu
-
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ç;
-
Bu sorun bendede oluyor. Gridlerin loading mesajını kapatırsanız düzeliyor
-
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;
-
PageSize Extension for UniDBGrid
multimesut replied to Sherzod's topic in Components and Code Samples
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;}') ); -
PageSize Extension for UniDBGrid
multimesut replied to Sherzod's topic in Components and Code Samples
hello @Sherzod, did you test? -
PageSize Extension for UniDBGrid
multimesut replied to Sherzod's topic in Components and Code Samples
thanks -
PageSize Extension for UniDBGrid
multimesut replied to Sherzod's topic in Components and Code Samples
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;