Page 1 of 1

TWeb - Sesiones

Posted: Wed Oct 28, 2020 6:55 pm
by Carles
Hola,

He integrado el modulo de sesiones en TWeb

https://m.facebook.com/story.php?story_ ... 3474978505

C.

Re: TWeb - Sesiones

Posted: Wed Oct 28, 2020 10:23 pm
by FiveWiDi
Carles wrote:Hola,

He integrado el modulo de sesiones en TWeb

https://m.facebook.com/story.php?story_ ... 3474978505

C.
Hay nueva versión de TWeb con ello?

Por cierto, esta información está disponible en otro link/lugar?
I hate Facebook. Pero mucho, mucho.
;)

Re: TWeb - Sesiones

Posted: Sat Oct 31, 2020 5:25 pm
by jvtecheto
Hola Charly

Tweb no me funciona en Ubuntu 20.04 en Windows me va bien.

Mercury y mod_harbour me funcionan bien

Que puede pasar?

Saludos.

Re: TWeb - Sesiones

Posted: Mon Nov 02, 2020 3:33 pm
by Carles
Hola,

Necesitaria saber que error te sale o que te ocurre. Yo lo tengo en linux y funciona bien.

C.

Re: TWeb - Sesiones

Posted: Tue Nov 03, 2020 8:49 pm
by Patricio Avalos Aguirre
Hola Carles

esto antes me funcionaba y ahora cuando actualice tweb por git ahora no me funciona :-(
no se porque dice que no existe las funciones, pero cuando reviso el código fuente si menciona la lib tweb.js

pd: la libreria es la ultima que baje por git que esta lib/tweb/tweb.hrb

gracias por la ayuda

Code: Select all

//  {% LoadHrb( 'lib/tweb/tweb.hrb' ) %}

#include {% TWebInclude('lib/tweb/') %}


function Main()
    local oWeb, o, oBrw

    if  ! Is_Session()
        Redirect( "login2.prg" )
        retu nil
    endif

    DEFINE WEB oWeb TITLE 'Listado de códigos' TABLES INIT
    DEFINE FORM o ID 'demo'
    INIT FORM o
        HTML o INLINE '<h5>LISTADOS DE PRECIOS</h5><hr>'

        ROWGROUP o
            SEPARATOR o LABEL 'Listados de productos'
            GET ID 'buscar' VALUE '' GRID 10 LABEL 'Buscar' PLACEHOLDER 'ingrese palabra a buscar' BUTTON ' Buscar' ACTION 'LoadState()' OF o
            BUTTON ID 'btn' LABEL ' Volver' ACTION 'volver()' GRID 2 ICON '<i class="fas fa-home"></i>' CLASS 'btn-primary btnticket' OF o
        END o

        ROWGROUP o
            DEFINE BROWSE oBrw ID 'ringo' HEIGHT 600 OF o
                ADD oCol TO oBrw ID 'descr'     HEADER 'Descripción'
                ADD oCol TO oBrw ID 'precio'    HEADER 'precio'
                ADD oCol TO oBrw ID 'stock' HEADER 'Stock'
        END o

        HTML o

            <script>
                function volver() {
                                        window.history.back();
                }

                var oWnd
                var oBrw = new TWebBrowse( 'ringo' )

                function LoadState() {
                    oWnd = MsgLoading("Espere....")
                    var cBuscar = $('#buscar').val()
                    console.log( cBuscar )
                    MsgServer( 'listaprecioserver.prg', cBuscar, Post_LoadState )
                }

                function Post_LoadState( dat ){

                    oWnd.modal('hide');
                    oBrw.SetData( dat.rows )
                }

                $(document).ready(function () {
                    oBrw.Init()
                })

            </script>
        ENDTEXT

    END FORM o

 
Image
Image

Re: TWeb - Sesiones

Posted: Tue Nov 03, 2020 11:53 pm
by Patricio Avalos Aguirre
Solucionado, el problema era el navegador por algun motivo no me mostraba algunas funciones del tweb.js, borre los datos de navegación y listo
todo ok :-)

Re: TWeb - Sesiones

Posted: Wed Nov 04, 2020 7:10 am
by Carles
Patricio,

Justo lo estaba probando :-)

Image