Jump to content

GoldLine

uniGUI Subscriber
  • Posts

    62
  • Joined

  • Last visited

Posts posted by GoldLine

  1. Hi irigsoft,
    the local temp table is visible only to the connection/session that creates it and is deleted when the connection/session is closed. You should work with GLOBAL TEMP TABLES.  

    GLOBAL TEMPRORY TABLE SCOPE -

    The global temporary table is automatically dropped when the session that created the table ends and the last active Transact-SQL statement (not session) referencing this table in other sessions end.

    Global temp tables are visible to everyone and are deleted when all connections that have referenced them have closed.

    Global temp table Advantage -

    A flexible solution, no need to change applications, data are cleaned automatically.

     

     

    • Thanks 1
  2. On 10/1/2021 at 11:49 AM, mikromundo said:

    Excuse me.
      I posted where there were already related posts previously it was not my intention to do anything wrong.

    This will never happen again.

     

    Don't do the same thing other users on other platforms do.

    Do not criticize the work that refers to Unigui itself and has helped dozens of users and has also helped unigui, because here in Brazil, because of Radcore, several licenses are sold.

    It is not because some do not use it that it is frowned upon.

    This is exactly what intraweb and tms web core users do with unigui users.

    RadCore is a useful addition to unigui developers, I like it.
    👍

  3. Hello,

    I've a problem in my mobile app.

    Some users use the app with their notebook. The users enter text in an edit field and confirm the entry with the enter key (vk_return).
    However, the enter key causes the app to restart.
    My question: how can I intercept the enter key being entered in an edit field in the mobile app?

  4. 13 hours ago, likemike said:

    Hello!

    I use UniPlatform to get the info, which OS is used.
     

    
    
    uPlat:=UniApplication.UniPlatform;
    
    IF (upAndroid IN uPlat) THEN OS:='Android'
    ELSE IF (upiOS IN uPlat) THEN OS:='iOS'
    ELSE IF (upDesktop IN uPlat) THEN OS:='Windows';

    It works on most devices, but on an iPad (APPLE MTXN2FD/A iPad Pro -2018)  I get:

    Anyone else has the same problem?

    Regards

    Mike

    Same problem on my IPad (5.Gen) with ios 14.4.2

    UniApplication.UniPlatform returns upDesktop.

  5. Hello Sherzod,

    f.e.

    function beforeInit(sender, config)
    {
      config.listeners= {
            click: {
                element: 'el',
                fn: function(e,el){      

                    if (MainmForm.pnlOrder.Enabled==true) {                                <== something like that
                    TweenLite.fromTo($('#'+el.id), 0.2,{backgroundColor :'#ffffff'},{backgroundColor :'#d2d2d2',onComplete:function(){
                     TweenLite.to($('#'+el.id), 1.0,{backgroundColor :'#ffffff'})
                     } }
                    });                                                          
                }
            }
        };
    }

×
×
  • Create New...