FiveWeb development

FiveWeb development

Postby Antonio Linares » Tue May 08, 2012 7: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
User avatar
Antonio Linares
Site Admin
 
Posts: 41462
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Re: FiveWeb development

Postby Antonio Linares » Tue May 08, 2012 7:03 am

Image
Image
Image
Image
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
 
Posts: 41462
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Re: FiveWeb development

Postby Marc Vanzegbroeck » 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
Marc Vanzegbroeck
 
Posts: 1157
Joined: Mon Oct 17, 2005 5:41 am
Location: Belgium

Re: FiveWeb development

Postby codemaker » 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
User avatar
codemaker
 
Posts: 208
Joined: Wed Dec 03, 2008 4:48 pm
Location: Belgrade, Serbia

Re: FiveWeb development

Postby Antonio Linares » Wed May 09, 2012 9: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
User avatar
Antonio Linares
Site Admin
 
Posts: 41462
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Re: FiveWeb development

Postby Antonio Linares » 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
User avatar
Antonio Linares
Site Admin
 
Posts: 41462
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Re: FiveWeb development

Postby Rick Lipkin » Wed May 09, 2012 1: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
User avatar
Rick Lipkin
 
Posts: 2642
Joined: Fri Oct 07, 2005 1:50 pm
Location: Columbia, South Carolina USA

Re: FiveWeb development

Postby Antonio Linares » Wed May 09, 2012 3: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
User avatar
Antonio Linares
Site Admin
 
Posts: 41462
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Re: FiveWeb development

Postby Rick Lipkin » Wed May 09, 2012 4: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
User avatar
Rick Lipkin
 
Posts: 2642
Joined: Fri Oct 07, 2005 1:50 pm
Location: Columbia, South Carolina USA

Re: FiveWeb development

Postby Antonio Linares » Wed May 09, 2012 8:39 pm

Rick,

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

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
 
Posts: 41462
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Re: FiveWeb development

Postby Antonio Linares » Wed May 09, 2012 8: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
User avatar
Antonio Linares
Site Admin
 
Posts: 41462
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Re: FiveWeb development

Postby Antonio Linares » Thu May 10, 2012 6: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: Select all  Expand view
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
User avatar
Antonio Linares
Site Admin
 
Posts: 41462
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Re: FiveWeb development

Postby Antonio Linares » Thu May 10, 2012 7:45 am

regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
 
Posts: 41462
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Re: FiveWeb development

Postby Antonio Linares » 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 :-)

Image
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
 
Posts: 41462
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Re: FiveWeb development

Postby mag071 » Sun May 13, 2012 12:57 am

No me muestra completa las pantallas
ni con chrome, ni mozilla.

Image
Mario Antonio González Osal
Venezuela
m a g 0 7 1 @ g m a i l. c o m
User avatar
mag071
 
Posts: 140
Joined: Thu Feb 02, 2006 12:09 pm
Location: Venezuela

Next

Return to FiveWin for Harbour/xHarbour

Who is online

Users browsing this forum: No registered users and 147 guests