-
Posts
805 -
Joined
-
Last visited
-
Days Won
23
erich.wanker last won the day on November 15 2020
erich.wanker had the most liked content!
Profile Information
-
Gender
Male
-
Location
Europe / Austria / Salzburger Land / Bad Hofgastein
-
Interests
Delphi with uniGUI ;-)
erich.wanker's Achievements

Advanced Member (4/4)
76
Reputation
-
how can i update a TUniDBTreeGrid after inserting a new record? The "selected Record" before inserting a new record should be selected after the "append" and the nodes to the record should be expand at the moment: if i create in runtime a new reocrd with dataset.append - i send dataset.post and the dataset.refresh - and the TUniDBTreeGrid goes to root-node
-
Hello, WinServer 2019 Datacenter (VM) Apache 2.4 Uni-Hyperserver eset Antivirus if starting the hyperserver-unigui Application - chrome shows a blank screen and console says: ERR_INCOMPLETE_CHUNKED_ENCODING i disabled firewall and antivirus on the server without success, i disable preloading in chrome.. the apache on this server is a copy - on other different computers (win2019,Win2016,win10..) i have NO problems - JUST this one PC i recompiled my app from program xxx; to library xxx; - the ISAPI DLL works fine without problems ANY suggestions what i can do to run my app with Hyperserver? ThanX Erich
-
Hello, a short Question: Is it possible to install a apache webserver on WinServer2019 (hosted in a dataCenter) - which is just reachable - if a client first starts a VPN-tunnel to the server? the amount of simultanes users schould be 100 (does a VPN Software exist for such thinking?) reason: in law-view it is a intranet-solution.
-
GroupingFeature: Use a other column for Group Title in uniDBGrid
erich.wanker replied to erich.wanker's topic in General
WOW 🙂 PERFECT !!! Thank YOU !!!!! Works great !! -
GroupingFeature: Use a other column for Group Title in uniDBGrid
erich.wanker replied to erich.wanker's topic in General
TESTCASE Between Output of CountryGroup and TotalCount i want the value of field "City" Description: My Datastructure is simmilar to the records of Group "British West Indies" - all "Citys" are the same .. which record of the group is used to get the "Grand Cayman"-Text doesnt matter testcase.zip -
GroupingFeature: Use a other column for Group Title in uniDBGrid
erich.wanker replied to erich.wanker's topic in General
i inserted following: '{columnName}: {name} - Gruppenname: {values.data[20]} ({[this.countTotal(values.rows)]})', but it doesnt put out the values from field "groupname" with ColIndex 20 in this case -
Hi, i use following code to display the total count of a Group in the Groupheade function beforeInit(sender, config) { var groupingFeature = Ext.create('Ext.grid.feature.Grouping', { groupHeaderTpl: new Ext.XTemplate( '{columnName}: {name} ({[this.countTotal(values.rows)]})', '', { countTotal: function(records) { var totalSum = 0; totalSum = records.length; return totalSum; } } ), hideGroupedHeader: true }); config.features = [groupingFeature] } My basic Groupfield is GROUPNUMBER (this is not changeable) So the outpu of GroupHeader is: Groupnumber 12345 (999) Now i want to ADD the value of database-field "groupname" It should output a GroupHeader: Groupnumber 12345 - Groupname This is a Textttext stored in the field "groupname" (999) i found this source from mhmda: function beforeInit(sender, config) { config.groupingFeature = Ext.create('Ext.grid.feature.Grouping',{ groupHeaderTpl:new Ext.XTemplate('{[this.getGroupTitle(values.rows[0])]}', { getGroupTitle: function(values) { if(values.data[1]=='') return 'My custom title: '+values.data[8];/*<--[8]field index*/ else return 'Other title: '+values.data[2];/*<--[2]field index*/ } }) }); config.features= [config.groupingFeature]; } how can i combinate this two things???
-
show loading mask of UniDBGrid1 - if unitimer starts
erich.wanker replied to erich.wanker's topic in General
if the timers starts ... the server calculates a lot of things this takes 2 seconds or more after the server has finished his work - he sends the result to the uniDGBrid .. the UniDBGrid shows short a loading mask (while the records are transported..) i want to show the loading mask (on clinet) in the moment - when the user clicks the button which starts the timer -
Hello, has someone a idea, how to show "LoadMask" of UniDBGrid1 if i set UniTimer.enabled:=true; (the timer starts a sql Thing - and the result is diplayed in UniDBGrid1) ThanX for suggestions Erich
-
my app has 170 forms .. in 1 i think i have an error.. if i start my unigui standalone app i become error: MON.exe: 000004DC: 11:59:23 [TUniServerModule]:HTTP Server Started on Port: 8077 MON.exe: 00002288: 12:00:15 [127.0.0.1]:EClassNotFound : Class TUniImageList not found : Addr: $004B6082 i opend all forms in delphi xe4 - no error i compiled my app - no error
-
Hi: Question-example - i have 2 tables: table1: colors fields: color_id, color_name table2: master_thing fields: painting_id, painting_name , color_id, color_name if a user select a color in a UniDBLookupComboBox (items are from table colors) - in table master_thing should store 2 values (color_id, color_name) ThanX for suggestions Erich
-
Hello, i can make left Align with following settings: AlignmentControl = uniAlignmentClient Layout = column LayoutConfig.Region = west but i can´t do it with "center" .. How can i realise something like this:
-
Test closed 🙂 ThanX 🙂
-
Hello Farshad, The screenshots of Microsoft defender virus detection: its a Server ( Windows Server Version 1809 (Build 17763.1757) - i connect via RDP -> copy/paste my UniGui.exe to Desktop - start localhost/unigui.dll/server and click "load new Version" ... and Defender gives an Alert The screenshots of virustotal.com: Exe files which are all made with my Win10 Professional Developer PC