Page 2 of 3

Re: FiveWeb development

PostPosted: Sun May 13, 2012 2:40 pm
by Antonio Linares
Mario,

Que resolucion de pantalla usas ?

Re: FiveWeb development

PostPosted: Mon May 14, 2012 4:25 pm
by mag071
Antonio;

1024x768

Re: FiveWeb development

PostPosted: Mon May 14, 2012 4:31 pm
by Antonio Linares
Mario,

Nosotros estamos usando 1280 x 800, pero haremos que se ajuste a las dimensiones de la pantalla.

Re: FiveWeb development

PostPosted: Tue May 15, 2012 10:46 am
by Antonio Linares
Easy learning HTML, CSS, JavaScript, PHP and MySQL:

viewtopic.php?f=17&t=24090&start=0

Interactive and super easy tutorials. Highly recommended :-)

Re: FiveWeb development

PostPosted: Tue May 15, 2012 5:43 pm
by Antonio Linares
Already implemented the "Go" option for FiveGen:

http://www.fivetechsoft.com/fivegen (beta-tester access require, require access by email to alinares@fivetechsoft.com)

Check how the main pulldown menu is automatically created from the FiveGen data dictionary, when you select "Go" :-)

Re: FiveWeb development

PostPosted: Sun Jun 17, 2012 3:47 pm
by Antonio Linares
Implemented the close button on all forms:

http://www.fivetechsoft.com/fiveweb
http://www.fivetechsoft.com/fivegen (beta-testers required login access)
http://www.fivetechsoft.com/fivedbu

Image

Re: FiveWeb development

PostPosted: Mon Jun 18, 2012 2:37 am
by Jonathan Hodder
Hi

Tip for resizing page to fit browser.
The newer versions of explorer have a resize options bottom right corner 100% 80% 150% etc.
Maybe someone knows more about Chrome and can suggest how to do the same with Chrome

I'm learning more Java at the moment.
Keep up the good work Antonio.

Come on guys FiveWeb is the future.

Jonathan

Re: FiveWeb development

PostPosted: Tue Jun 19, 2012 1:16 pm
by Antonio Linares
FiveGen: Dynamic forms from the server dictionary are already working !!! :-)

Learn how easy to use them:

1. In FiveGen, from the Menu "Interface", "Forms", create a new form:

Image

2. From the Menu "Interface", "Menu", we assign this action to a menuitem:

Form( cFormName ) // Will access the server to load a dictionary form without changing the current webpage!

Image

3. We launch our app from FiveGen, Menu, "Go"

4. In our app, we go to our menuitem and launch the action:

Image

Our form is shown, dynamically built from the server dictionary :-)

Re: FiveWeb development

PostPosted: Tue Jun 19, 2012 4:27 pm
by Rick Lipkin
Antonio

Thank you for all your hard work .. a couple of quick questions ??

1) HTML 5 seems to be where android and smart phones appear to be trending .. I know nothing about HTML 5 .. are you ( thinking about or ) developing along those lines ?

2) Ajax and XML .. I realize when you start talking interactive XML .. that is quite a different territory than Html ?? what are your thoughts ?

Thanks
Rick Lipkin

Re: FiveWeb development

PostPosted: Tue Jun 19, 2012 7:09 pm
by Antonio Linares
Rick,

We have not needed to use any specific HTML5 features yet. In our code there is a section for web sockets but we are not using them by now.

XML is not used. We found a very easy way to connect the client side to the server side using frames. Frames are not recommended and work really fine, thats why we keep using them meanwhile they remain supported.

Please review this thread that we opened in StackOverflow, its interesting and offers solutions for the future in case that we need to use HTML5 only:

http://stackoverflow.com/questions/11080366/retrieve-data-from-the-server-without-going-to-a-new-web-page

Re: FiveWeb development

PostPosted: Thu Jun 21, 2012 2:23 pm
by Antonio Linares
Placing controls on a form from FiveGen:

http://www.fivetechsoft.com/fivegen (beta tester login required)

FiveGen documentation: http://wiki.fivetechsoft.com/doku.php?id=fivegen_english

Image

Image

Re: FiveWeb development

PostPosted: Thu Jun 21, 2012 7:11 pm
by Rick Lipkin
Antonio

AWESOME .. I was alluding to your form on form data entry when I asked about HTML5 and the Ajax question earlier ..

This example answered that question ..

Nicely Done!

Rick Lipkin

Re: FiveWeb development

PostPosted: Fri Jun 22, 2012 3:31 am
by DevBr
Hi Antonio,

Is it Open-Source project ?
Do you have a SVN ?
Maybe I can contrib too if you allow.

Thanks. :)

Re: FiveWeb development

PostPosted: Fri Jun 22, 2012 8:56 am
by Antonio Linares
Lailton,

No, it is not open source. The HTML + CSS + JavaScript are available (obviously), but the PHP (server side) it is not and will be commercial.

Your help is welcome, please contact me by email so we can coordinate it, thanks :-)

BTW, I was considering to implement a forms designer, maybe using jquery ui, or maybe not, as we don't need all that functionality, and I prefer to have a very simple code and very easy to maintain.

Re: FiveWeb development

PostPosted: Fri Jun 22, 2012 3:02 pm
by Bayron
Hi Antonio,

I see that you continue to use:

Code: Select all  Expand view
<!--[if lte IE 9]>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" >    
<![endif]-->
 


I propossed this, but I found that is not the solution, because you are not taking advantage of new functionality in IE9 or newer...

I have found that the problem with IE9 is that you have to tell it that you want the coordinates to be in Pixels and not in Points...

Insted of:
Code: Select all  Expand view

   this.dlg.style.width  = nWidth;
   this.dlg.style.height = nHeight;
 


Anywhere you use coordinates, You should use:

Code: Select all  Expand view

   this.dlg.style.width  = nWidth + "px";
   this.dlg.style.height = nHeight + "px";
 


Just an example...

Removing this TAG, when using IE9 you are going to be able to use round corner buttons, and gradients using scripst... ammong other functionalities