Page 1 of 3

FiveWeb development

PostPosted: Tue May 08, 2012 7:00 am
by Antonio Linares
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 :-)

Re: FiveWeb development

PostPosted: Tue May 08, 2012 7:03 am
by Antonio Linares
Image
Image
Image
Image

Re: FiveWeb development

PostPosted: Tue May 08, 2012 10:00 am
by Marc Vanzegbroeck
Antonio,

Very good news :D

Regards,
Marc

Re: FiveWeb development

PostPosted: Tue May 08, 2012 10:52 pm
by codemaker
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

Re: FiveWeb development

PostPosted: Wed May 09, 2012 9:35 am
by Antonio Linares
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 :-)

Re: FiveWeb development

PostPosted: Wed May 09, 2012 10:09 am
by Antonio Linares
Implemented the function ScreenHeight() thanks to Carlos Mora :-)

Now the forms center should work better on FireFox

Thanks!

Re: FiveWeb development

PostPosted: Wed May 09, 2012 1:44 pm
by Rick Lipkin
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

Re: FiveWeb development

PostPosted: Wed May 09, 2012 3:48 pm
by Antonio Linares
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 :-)

Re: FiveWeb development

PostPosted: Wed May 09, 2012 4:16 pm
by Rick Lipkin
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

Re: FiveWeb development

PostPosted: Wed May 09, 2012 8:39 pm
by Antonio Linares
Rick,

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

Re: FiveWeb development

PostPosted: Wed May 09, 2012 8:40 pm
by Antonio Linares
Beta-testers restricted access:

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

Re: FiveWeb development

PostPosted: Thu May 10, 2012 6:11 am
by Antonio Linares
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 :-)

Re: FiveWeb development

PostPosted: Thu May 10, 2012 7:45 am
by Antonio Linares

Re: FiveWeb development

PostPosted: Sat May 12, 2012 10:11 am
by Antonio Linares
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

Re: FiveWeb development

PostPosted: Sun May 13, 2012 12:57 am
by mag071
No me muestra completa las pantallas
ni con chrome, ni mozilla.

Image