FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour FiveWeb development
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
FiveWeb development
Posted: Tue May 08, 2012 07:00 AM
We have resumed our work on FiveWeb development:

FiveWin Web Interface
http://www.fivetechsoft.com/fiveweb

FiveGen: RAD for the Cloud
http://www.fivetechsoft.com/fivegen

FiveDbu: DBU for the Cloud
http://www.fivetechsoft.com/fivedbu

Both FiveGen and FiveDbu are based on FiveTech's FiveWeb.

All of them will support a Metro alike style, besides Google style, MS style, etc. The user will be able to select the style on runtime :-)
regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: FiveWeb development
Posted: Tue May 08, 2012 07:03 AM



regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 1195
Joined: Mon Oct 17, 2005 05:41 AM
Re: FiveWeb development
Posted: Tue May 08, 2012 10:00 AM

Antonio,

Very good news :D

Regards,
Marc

Regards,

Marc



FWH32+xHarbour | FWH64+Harbour | BCC | DBF | ADO+MySQL | ADO+MariaDB | ADO+SQLite
Posts: 208
Joined: Wed Dec 03, 2008 04:48 PM
Re: FiveWeb development
Posted: Tue May 08, 2012 10:52 PM

Antonio, testing this on FireFox 12.0, shows the browse and other dialogs too much up and the part of these dialogs is "under" the menu bar

Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: FiveWeb development
Posted: Wed May 09, 2012 09:35 AM
Editing records is working :-) Please use FIveGen to test it http://www.fivetechsoft.com/fivegen

Delete is not working yet.

Boris,

Yes, we know it, we will solve Internet browsers compatibility issues later on. We are using Google Chrome for development now, Thanks :-)
regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: FiveWeb development
Posted: Wed May 09, 2012 10:09 AM

Implemented the function ScreenHeight() thanks to Carlos Mora :-)

Now the forms center should work better on FireFox

Thanks!

regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 2706
Joined: Fri Oct 07, 2005 01:50 PM
Re: FiveWeb development
Posted: Wed May 09, 2012 01:44 PM

Antonio

Curious, how are you handling the data retrieval and writing back to the database ? ( java script ? ) Are you using a Sql database ?

Thanks
Rick Lipkin

Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: FiveWeb development
Posted: Wed May 09, 2012 03:48 PM

Rick,

On these early stages we are using DBFs and JavaScript on the client and PHP on the server.

On a few days we will be using MySql, though DBFs management will be supported too :-)

regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 2706
Joined: Fri Oct 07, 2005 01:50 PM
Re: FiveWeb development
Posted: Wed May 09, 2012 04:16 PM

Antonio

Thank you for your quick answer .. I know it is early in the development, but sometime in the near future I would like to see how you are handling the javascript and perhaps a sample .js file.

Thanks
Rick Lipkin

Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: FiveWeb development
Posted: Wed May 09, 2012 08:39 PM

Rick,

You can already review it: simply inspect its source code right clicking on it :-)

regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: FiveWeb development
Posted: Wed May 09, 2012 08:40 PM

Beta-testers restricted access:

If you want to test FiveGen please send me an email requesting access, thanks :-)

regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: FiveWeb development
Posted: Thu May 10, 2012 06:11 AM
Records deletion is already working :-)

http://www.fivetechsoft.com/fivegen (please email me for login and password if you want to beta test it)

This code is very interesting as it shows how we use "codeblocks" in JavaScript and also how we simulate "modal" execution:

Code (fw): Select all Collapse
function Delete()
{
   var nSelected = BrwSelCount( oFrame );
     
   if( nSelected == 0 )
   {
      MsgInfo( "Please select one record to edit" );
      return;
   }
   else if( nSelected > 1 )
   {
      MsgInfo( "Please select only one record to edit" );
      return;
   }        

   OnYes = function() 
   {
      oDlg.End();
      oFrame.src = "http://www.fivetechsoft.com/fivegen/delete.php?table=" + Alias() + 
                   "&recno=" + BrwSelRecord( oFrame );
   };
      
   MsgYesNo( "Do you want to delete it ?", OnYes );             
}


OnYes is a public variable that holds a "codeblock". It will be evaluated when "Yes" is selected from MsgYesNo().

Don't miss this great chance to learn these advance coding techniques for the web :-)
regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: FiveWeb development
Posted: Thu May 10, 2012 07:45 AM
regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: FiveWeb development
Posted: Sat May 12, 2012 10:11 AM
Implementing fields editing on FiveDBU:

http://www.fivetechsoft.com/fivedbu

This code is very interesting as we are dynamically managing a table in memory, so is kept locally, with no interaction with the server :-)

regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 140
Joined: Thu Feb 02, 2006 12:09 PM
Re: FiveWeb development
Posted: Sun May 13, 2012 12:57 AM
No me muestra completa las pantallas
ni con chrome, ni mozilla.

Mario Antonio González Osal

Venezuela

m a g 0 7 1 @ g m a i l. c o m