Jump to content

picyka

uniGUI Subscriber
  • Posts

    1093
  • Joined

  • Last visited

  • Days Won

    36

Posts posted by picyka

  1. If adding or resorting to export using the active BufferedStore feature does not work?

    In the example Grid - Infinite Scroll I put it for export.

    UniDBGrid1.Exporter.ExportGrid;

    UniGridExcelExporter

  2. Currently, use the UniGMap component, I am thinking of migrating to UniMap for being native, analyzing how features I missed some things,

    Route (passing an address list)

    procedure TUniGMap.Route (DirectionsRequest: TDirectionsRequest);

    procedure Geocoding (Address: string; PanTo: Boolean = False);

        'google.maps.event.addListener (@ googleMap @, "idle", function () {' +
        'ajaxRequest (@ EventHandler @, "mapidle",' +
        '[' +
        ']);' +
        '});' +

    Could you include these improvements?

  3. 12 minutes ago, Hayri ASLAN said:

    Use  onbeforeshow para carregar seus dados. 

    Como você está chamando, mostrando esse formulário?

    how can i send a link in private?

  4. 11 minutes ago, Hayri ASLAN said:

    Por que você não está fazendo isso antes da exibição sem mostrar uma máscara

    The data load is being done when opening the form, I need a mask because the process is slow, when opening the form where I could load the data? being that it has no interest of the user to load the data.

  5. 6 minutes ago, Hayri ASLAN said:

    Você não pode usar a sincronização onAfterShow. 

    I have a load of data in the AfterShow event, where could I call the method? I need to put a message to wait.

  6. 2 minutes ago, Hayri ASLAN said:

    Então, o que está acontecendo quando você usa esse código?

    você pode criar um caso de teste simples?

     

    not loading the message "Loading data please wait ..."

  7. Can I use the ShowMask method in the AfterShow event of a form?

     

    procedure TUniFormConsultaPrestador.UniFormAfterShow(Sender: TObject);
    begin
      if Self.FTipoConsulta = tpLista then
      begin
        try
          ShowMask('Carregando dados aguarde...');
          UniSession.Synchronize;
          Self.LoadPrestadores(tpLista,False,Self.FEndereco);
        finally
          HideMask;
        end;
      end;
    end;

    Remembering that I already use it in other system locations.

    
     
  8.  

    I discovered the solution

    function chart.beforeInit(sender, config)
    {
       if (config.series.length) { 
           for (i = 0; i < config.series.length; i++) {
             config.series.tooltip = {
               trackMouse: true,
               width: 150,
               renderer: function(tip, item) {
                  tip.setTitle(item.get('LL'));
                  tip.update('Quantidade: ' + item.get('A'));
                  console.log(item);
                }
             }
           }
       }

    }

     

×
×
  • Create New...