
albertovesx
uniGUI Subscriber-
Content Count
555 -
Joined
-
Last visited
-
Days Won
12
albertovesx last won the day on August 29 2019
albertovesx had the most liked content!
Community Reputation
30 ExcellentAbout albertovesx
-
Rank
Advanced Member
Profile Information
-
Gender
Not Telling
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
How to destroy the object which created after login when session timeout.
albertovesx replied to AMIT's topic in General
is it correct to use UniMainModule.onDestroy to free memory of mainmodule objects? -
procedure delScreenMask() begin unisession.AddJS('document.querySelectorAll("div.x-mask").forEach(e => { if (e.style["background-color"] == "transparent") e.remove()})'); end; frmbuscar.showmodal( procedure(sender: Tcomponent; res: integer) begin delScreenMask(); end );
-
delphi hang and socket in use since update unigui with extjs 6.5
albertovesx replied to delagoutte's topic in General
Hi, I made this procedure and just call it after showmodal in order to remove the screenmask that remains active, but transparent. It works fine, but the browser needs to be upgrated to recent version. procedure delScreenMask() begin unisession.AddJS('document.querySelectorAll("div.x-mask").forEach(e => { if (e.style["background-color"] == "transparent") e.remove()})'); end; frmbuscar.showmodal( procedure(sender: Tcomponent; res: integer) begin delScreenMask(); end ); -
Thank you
-
Building Mobile Listview with floating action button
albertovesx replied to mhmda's topic in Components and Code Samples
It would be great -
Building beautiful login screen for desktop using Unigui
albertovesx replied to mhmda's topic in Components and Code Samples
I am learning a lot. Thank you. -
Never mind I found it in border sample, sorry
-
I cant use splitter when i set layout in client side. how can achive this? best regards
-
Can someone tell me why this code generate an exception? I can´t call components stored in unimainmodule. Ttask.run( procedure begin unimainmodule.Query.open; end ); or Ttask.run( procedure begin TThread.Queue(nil, procedure begin uniMainModule.Query.open; end ); end ); Best regards.
-
Hi Build 1.90.0.1534, the problem is in uniMdbgrid touch, but the sample using client dataset works fine, do I need to configure something else? about test case its kind of difficult because the data.
-
Hi I am having some issues with unimDBgrid. This are the properties for the grid: Buffered Store{ Enabled: True; LoadingBufferZone: 200; PageSize: 100: } WebOptions{ FetchAll: False; Paged: False; PageSize: 10; } I make a query like this in UniDAc query: Sql.Text := 'select * from nacimiento limit 1000'; The grid keep a mask over dbgrid with loading message (cargando in spanish) I verified the answer for the get transaction and it has100 records, so it worked well, but they never are shown in dbgrid because loading mask never finish
-
responsive Design Question: Placing TuniPanels
albertovesx replied to erich.wanker's topic in General
https://mega.nz/#!ISZlSCoR!FOBr_Ix-L209j20n6SNZbnnlnibKkGG1J-5flTJnEq4 -
Is it possible to integrate cytoscape with UniGui? https://github.com/cytoscape/cytoscape.js https://cytoscape.org/ Best regards