Jump to content

Georges Soares

uniGUI Subscriber
  • Posts

    128
  • Joined

  • Last visited

  • Days Won

    14

Posts posted by Georges Soares

  1. Good afternoon community ...

     

    Here's a work I'm putting into the new uniGUI with extjs 6.5, remembering that there's an app in the Google Play Store (Guia da Serra MT) made with Android Studio that makes interactions with uniGUI, Call, Share, close App etc. ..

     

    Old Version: Extjs 4.2


     

    New Version: Extjs 6.5


  2. the code is wrong.
    I checked via console.log.
     
    the value of
    (me.getScrollable () position.y === me.getScrollable (). getSize () y)
     
    It's never the same, and I did not figure out how to make the adjustment, for Desktop I thought, but Mobile did not.
     
    so I did a multiplication by 0.9 to adjust.
     

     

    Do you have a solution to this difference?
     
    var me = this;
        me.getScrollable().on('scrollend', function(event) {
            Ext.defer(function() {
                    console.log('posfora:' + me.getScrollable().position.y);
                    console.log('sizefora:' + me.getScrollable().getSize().y);
                    
                if (me.getScrollable().position.y >= (me.getScrollable().getSize().y * 0.9)) {
                    console.log('posDentro:' + me.getScrollable().position.y);
                    console.log('sizeDentro:' + me.getScrollable().getSize().y);
                
                    ajaxRequest(me, 'getProdutos', []);
                } 
                               
    
                
            }, 1000)
        });
    
  3. perfect thank you!
     
    But I made an adjustment for my application, so at the end of the list it loads more products.
     
    it is perfect.
     
    function painted(sender, eOpts)
    {
    var me = this;
    me.getScrollable().getScrollElement().addListener('scroll', function() {
            Ext.defer(function() {
                if (me.getScrollable().position.y = me.getScrollable().getSize()) {
                     ajaxRequest(me, 'getProdutos', []);}
                      }, 1000)
        });
    
    
    }
    

    I hope I did it right, if you have suggestions you can send me, thank you.

  4. I managed in Berlin to run uniGUI with extjs 4.2.5 and in Tokyo with version 6.5, but I had to do a lot of things manually.

     

    it would really be great if you had the ExtJS 6.5 version run separately so you could run tests.

     

    including Runtime, so we could have projects running with 4.2.5 and some tests in 6.5

  5. Add 6 properties TopBarButtons,BottomBarButtons,HeaderButtons,TopBarButtonsEvent,BottomBarButtonsEvent,HeaderButtonsEvent

    and 3 events   OnTopBarButtonAction,OnBottomBarButtonAction,OnHeaderButtonAction

    Only buttons.

    These can use like  the ActionButtons.

    Maybe useful.

     

    And codes were in a mess with my limited program knowledge.

     

    attachicon.gifbarbuttons.png

    attachicon.gifBMUniDBGrid.zip

     

    Congratulations...
    I'm going to download and test, thanks for sharing.
  6. Hello guys

     

    I'm sorry for delay. I'm thinking seriuosly on a new version of the Grid, in fact, a set of components for better configurations, so paginations, popupmenus and others could be made through visual components related to the Grid.

    What I'm thinking is to stop the maintenancy of this free version and start working on this new project that will allow me better and faster maintenancy and adding new features easier.

    Initial features are:

     - Pagination Component

     - Grid PopupMenu Component

     - Grid Seach Component

     

    These component will allow easier configuration and customization even to EXTJS and Delphi low experienced people.

    Any sugestion will be appreciated.

     

    Best regards

     

     

    cool
     
    what is already good will be better
     
    congratulations
  7. Calendar of Commitments with uniGUI
    I show in this video based on a source code provided in the Group by Robinho, how to create a calendar where you can put badges on days with appointments.
     
    I use the components of the Fênix: http://app.fenixerp.com.br/unigui/
     
     
    [PT-BR]
     
    Calendário de Compromissos com uniGUI
    Mostro nesse vídeo com base em um código fonte fornecido no Grupo por Robinho, como criar um calendário onde você pode colocar marcações (badge) nos dias com compromissos.

     

    utilizo os componentes da Fênix: http://app.fenixerp.com.br/unigui/

     

     

    VIDEO

    https://youtu.be/f0ws4zcuRtM

     

     

    Caledario2.rar

    post-4422-0-98794000-1513715786_thumb.png

    • Upvote 3
  8. Good Morning!

     

    I have just finished the project that finishes the three levels of Courses, finished in advance, and pleasing all Students, Thank you ...

     

    Will be seen in this class

    1. Creating the Delphi FMX APK

    2. UniGUI Interaction -> FMX (Close APK, Share WhatsApp, Share, Connect, Get Photo, Get BarCode / QrCode)

    3. Interaction FMX -> uniGUI (Sending the photo to the server, sending the barcode to the uniGUI Edit)

     

     

    Notice to everyone who is interested in the Course that I am creating the caption to attend to the global community, soon I will be making it available.

     

     

    post-4422-0-06026700-1511440789_thumb.jpg

    • Upvote 1
×
×
  • Create New...