I am also curious, as i was going to start a new project but if v3 is going to be coming soon i will wait for its release.ruiascensao wrote:Hi Steve,
Any update regarding the release of version 3?
I'm looking forward to work with the new release.
Thank you for your work and support!
Welcome to the nuBuilder Forums!
Register and log in to access exclusive forums and content available only to registered users.
Register and log in to access exclusive forums and content available only to registered users.
Nubuilder 3
-
- Posts: 8
- Joined: Sat Dec 28, 2013 12:13 am
Re: Nubuilder 3
-
- Posts: 1
- Joined: Wed Jan 08, 2014 9:06 am
-
- Posts: 6
- Joined: Sun Jan 06, 2013 7:20 pm
Re: Nubuilder 3
Definitively, it is (marked as 'Alpha' stage) !!!doutorchefe wrote:Is this nuBuilderPro at github the new nuBuilder 3 already?? =)
I was afraid that the 'PRO' part of the name meant that v3 would only be offered in a SaaS fashion, leaving a limited version open source (as sugarCRM did).
Great job, guys ! the new app installs and boot up fine. I'm impacient to get the documentation !
-
- Posts: 8
- Joined: Sat Dec 28, 2013 12:13 am
Re: Nubuilder 3
Or is 'pro' a new non-free version? That would be a sad day.doutorchefe wrote:Is this nuBuilderPro at github the new nuBuilder 3 already?? =)
-
- Posts: 6
- Joined: Sun Jan 06, 2013 7:20 pm
Re: Nubuilder 3
Doesn't looks so ! The nuBuilderPro code at the repository is fully installable and functional. I was afraid that the offrer were split between a limited free version and a new SaaS version...Nurb432 wrote:Or is 'pro' a new non-free version? That would be a sad day.doutorchefe wrote:Is this nuBuilderPro at github the new nuBuilder 3 already?? =)
BTW, I was also afraid that we had to wait the documentation to be online in order to start using this new version. But know what ? I was able to re-create my old v2 apllication from scratch in a few hours. If you know how to use v2, you can already use the v3 functionalities.
Great job, guys !
Re: Nubuilder 3
The introduction looks great. Looking forword to work with NubuilderPro.
Great job guys.
Johan
Great job guys.
Johan
Re: Nubuilder 3
Hi everybody,
nuBuilderPro is version 3 and on github and people can play around with it but we haven't got any install instructions yet.
system files start with zzz and wont clash with version 2 (zz)
We still have some bugs to iron out.
Steven
nuBuilderPro is version 3 and on github and people can play around with it but we haven't got any install instructions yet.
system files start with zzz and wont clash with version 2 (zz)
We still have some bugs to iron out.
Steven
-
- Posts: 84
- Joined: Mon Jul 04, 2011 12:52 am
Re: Nubuilder 3
Hi Steven,
glad to see nubuilder3.
I browsed the new code and found something i would like to point out.
Using jquery markup like that is not very efficient.
jquery has to search the same DOM element over again to change the attributes.
When chaining up the selection and putting the css attribute as objects - jquery has to search the element just once and do its magick lightning fast.
I run a test http://jsperf.com/zzz-jquery-id-chaining
The speed difference is about 70-80%
hope it helps
glad to see nubuilder3.
I browsed the new code and found something i would like to point out.
Using jquery markup like that is not very efficient.
jquery has to search the same DOM element over again to change the attributes.
Code: Select all
$('#id').css( 'width', '310px');
$('#id').css( 'height', '300px');
$('#id').html( 'some value');
$('#id').css( 'top', '15%');
$('#id').css( 'left', '35%');
$('#id').css( 'border-style', 'solid');
$('#id').css( 'border-color', 'grey');
$('#id').css( 'border-width', '1px');
$('#id').css( 'position', 'absolute');
$('#id').css( 'background-color', 'white');
$('#id').addClass( 'nuShadeHolder');
Code: Select all
$('#id').css(
{'width':'310px'},
{'height':'300px'},
{'top':'15%'},
{'left':'35%'},
{'border-style':'solid'},
{'border-color':'grey'},
{'border-width':'1px'},
{'position':'absolute'},
{'background-color':'white'})
.addClass( 'nuShadeHolder')
.html( 'some value');
The speed difference is about 70-80%
hope it helps
-
- Posts: 11
- Joined: Sat Jan 18, 2014 1:26 pm
Re: Nubuilder 3
Hi Xavierxavier wrote: BTW, I was also afraid that we had to wait the documentation to be online in order to start using this new version. But know what ? I was able to re-create my old v2 apllication from scratch in a few hours. If you know how to use v2, you can already use the v3 functionalities.
I also downloaded the new version but I cannot get it to run past the login form. Can you give me a couple of tips on your install and setup procedures? I have modified config.php but I'm not sure about the two database files and how the templates are supposed to work. I also had errors importing the sql into MySql. I'm excited to try it out but have spent too long getting nowhere fast! Any help you can offer is much appreciated.
Regards, John