Jump to content

freedowsRoO

Members
  • Posts

    188
  • Joined

  • Last visited

  • Days Won

    1

freedowsRoO last won the day on October 13 2020

freedowsRoO had the most liked content!

Profile Information

  • Gender
    Male
  • Location
    Rondonópolis/MT - Brazil

Contact Methods

  • Skype
    jefferson.fabrin

Recent Profile Visitors

1482 profile views

freedowsRoO's Achievements

Active Member

Active Member (3/4)

23

Reputation

  1. Hello guys!! How you doing? I've been testing some small applications to learn more about performance with Unigui but i want to know from you guys what is the best pratice to consuming less resource of the server side? I tested 3 cases with 500 records with one DBGrid: Consuming an API and saving the data in a TFDMentable. Direct connecting in the local database with TFDQuery. Direct connecting in the local database but saving the data in a TFDMentable. Using the stress test tool in all the 3 cases, the consuming off resources is pretty much the same. The big deal here is that with direct connecting the server side holds the memory until i close the TFDQuery and in the other tests i close the TFDQuery immediatly fetch the records on the TFDMentable realising the memory more fast than the others.
  2. i did it! Thanks for the help but i have another question, is it possible to get the name of the grid that i drag the record in this code? Is that the same solution that you answered me above, i just need to get the name of the grid tha i drag the record now. function window.afterrender(sender, eOpts) { var me=sender; me.dropTargetBody = Ext.create('Ext.dd.DropTarget', Ext.getBody(), { ddGroup: 'D1', notifyDrop: function(source, evt, data) { ajaxRequest(me, 'dropped', []); }, notifyEnter: function() { } }); }
  3. I have a components saved in my database and i use this code to drag the record from the grid and drop him to the panel and create the component at runtime, but the component is aways created with top=0 and left = 0. I have already tried to get the cordinates but without success.
  4. Hello again my friend! Is It possible to get the drop cordinates (x,y) inside this ajaxrequest ?????? function window.afterrender(sender, eOpts) { var me=sender; me.dropTargetBody = Ext.create('Ext.dd.DropTarget', Ext.getBody(), { ddGroup: 'D1', notifyDrop: function(source, evt, data) { ajaxRequest(me, 'dropped', []); }, notifyEnter: function() { } }); }
  5. Any ideia when it will be release? =]
  6. Hello, i'm using the build 1534. I found the component but the only way i found to get the data was trough the remote query but remote query is no the solution that i need. I need the possibility to link a datasource to the combobox. Thanks
  7. Hi @Sherzod We will have this component in the DB pallete? I need to link a datasource on combobox.
  8. Sorry ASLAN i saw the demo but it's still not clear how to draw the vector in runtime. I tried to use the following code to draw the vector but it's add only one point at time in my map, it's not connect the points and draw the vector. with UniMap1.Vectors.Add do begin AddPoint(lat, lng); VectorType:=mvPolygon; with Options do begin color:= UniColorButton1.Color; fillColor:= UniColorButton2.Color; weight:= Trunc(UniNumberEdit5.Value); opacity:= UniNumberEdit6.Value; fillOpacity:= UniNumberEdit7.Value; radius:= Trunc(UniNumberEdit8.Value); end; AddToMap; FitBounds; end;
  9. Hello guys! How you doing? Is there a way to drawing vectors on unimap in runtime? I need that when i click on the map the vector will drawing point by point. I saw the demo and tried but no sucess.... Version1.90.1530
×
×
  • Create New...