FiveWeb development
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
FiveWeb development
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
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
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
-
- Posts: 1102
- Joined: Mon Oct 17, 2005 5:41 am
- Location: Belgium
- Contact:
Re: FiveWeb development
Antonio,
Very good news
Regards,
Marc
Very good news
Regards,
Marc
Regards,
Marc
FWH32+xHarbour | FWH64+Harbour | BCC | DBF | ADO+MySQL | ADO+MariaDB | ADO+SQLite
Marc
FWH32+xHarbour | FWH64+Harbour | BCC | DBF | ADO+MySQL | ADO+MariaDB | ADO+SQLite
Re: FiveWeb development
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
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Re: FiveWeb development
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
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
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Re: FiveWeb development
Implemented the function ScreenHeight() thanks to Carlos Mora
Now the forms center should work better on FireFox
Thanks!
Now the forms center should work better on FireFox
Thanks!
- Rick Lipkin
- Posts: 2397
- Joined: Fri Oct 07, 2005 1:50 pm
- Location: Columbia, South Carolina USA
Re: FiveWeb development
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
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
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Re: FiveWeb development
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
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
- Rick Lipkin
- Posts: 2397
- Joined: Fri Oct 07, 2005 1:50 pm
- Location: Columbia, South Carolina USA
Re: FiveWeb development
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
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
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Re: FiveWeb development
Rick,
You can already review it: simply inspect its source code right clicking on it
You can already review it: simply inspect its source code right clicking on it
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Re: FiveWeb development
Beta-testers restricted access:
If you want to test FiveGen please send me an email requesting access, thanks
If you want to test FiveGen please send me an email requesting access, thanks
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Re: FiveWeb development
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:
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
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
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 );
}
Don't miss this great chance to learn these advance coding techniques for the web
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Re: FiveWeb development
FiveCloud suite:
FiveWeb:
http://wiki.fivetechsoft.com/doku.php?i ... eb_english
FiveGen:
http://wiki.fivetechsoft.com/doku.php?i ... en_english
FiveDBU:
http://wiki.fivetechsoft.com/doku.php?i ... bu_english
FiveWeb:
http://wiki.fivetechsoft.com/doku.php?i ... eb_english
FiveGen:
http://wiki.fivetechsoft.com/doku.php?i ... en_english
FiveDBU:
http://wiki.fivetechsoft.com/doku.php?i ... bu_english
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Re: FiveWeb development
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
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
Re: FiveWeb development
No me muestra completa las pantallas
ni con chrome, ni mozilla.
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
Venezuela
m a g 0 7 1 @ g m a i l. c o m