Page 1 of 3
FiveWeb development
Posted: Tue May 08, 2012 7:00 am
by Antonio Linares
We have resumed our work on FiveWeb development:
FiveWin Web Interfacehttp://www.fivetechsoft.com/fivewebFiveGen: RAD for the Cloudhttp://www.fivetechsoft.com/fivegenFiveDbu: DBU for the Cloudhttp://www.fivetechsoft.com/fivedbuBoth 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
![Smile :-)](./images/smilies/icon_smile.gif)
Re: FiveWeb development
Posted: Tue May 08, 2012 7:03 am
by Antonio Linares
Re: FiveWeb development
Posted: Tue May 08, 2012 10:00 am
by Marc Vanzegbroeck
Antonio,
Very good news
Regards,
Marc
Re: FiveWeb development
Posted: 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
Posted: Wed May 09, 2012 9:35 am
by Antonio Linares
Editing records is working
![Smile :-)](./images/smilies/icon_smile.gif)
Please use FIveGen to test it
http://www.fivetechsoft.com/fivegenDelete 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
![Smile :-)](./images/smilies/icon_smile.gif)
Re: FiveWeb development
Posted: Wed May 09, 2012 10:09 am
by Antonio Linares
Implemented the function ScreenHeight() thanks to Carlos Mora
![Smile :-)](./images/smilies/icon_smile.gif)
Now the forms center should work better on FireFox
Thanks!
Re: FiveWeb development
Posted: 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
Posted: 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
![Smile :-)](./images/smilies/icon_smile.gif)
Re: FiveWeb development
Posted: 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
Posted: 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
![Smile :-)](./images/smilies/icon_smile.gif)
Re: FiveWeb development
Posted: 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
![Smile :-)](./images/smilies/icon_smile.gif)
Re: FiveWeb development
Posted: 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
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
![Smile :-)](./images/smilies/icon_smile.gif)
Re: FiveWeb development
Posted: Thu May 10, 2012 7:45 am
by Antonio Linares
Re: FiveWeb development
Posted: Sat May 12, 2012 10:11 am
by Antonio Linares
Implementing fields editing on FiveDBU:
http://www.fivetechsoft.com/fivedbuThis code is very interesting as we are dynamically managing a table in memory, so is kept locally, with no interaction with the server
![Smile :-)](./images/smilies/icon_smile.gif)
![Image](http://img137.imageshack.us/img137/6297/lafotogo.jpg)
Re: FiveWeb development
Posted: Sun May 13, 2012 12:57 am
by mag071
No me muestra completa las pantallas
ni con chrome, ni mozilla.
![Image](http://www.mag071.com/fwh/fivegen01.jpg)