Page 1 of 2

nuBuilder To Do List

Posted: Mon Jun 22, 2009 6:24 am
by steven
Proposed updates for nubuilder.
  • Convert uDB JavaScript function to use AJAX instead of using hidden frames
  • Convert getRecordFromList JavaScript function to use AJAX instead of using hidden frames.
  • Convert validateLU JavaScript function to use AJAX instead of using hidden frames.
  • Deactivate activity buttons (onblur of objects) on Run Activity screens until zzsys_variable tables have been updated.

Re: nuBuilder To Do List

Posted: Wed Apr 28, 2010 3:36 pm
by cypherinfo
Hello, I add this:
cypherinfo wrote:Hello, another good thing to add to nuBuilder would be an intuitive query builder as here:

http://ajax.easyquerydemo.com/

You would be the first cross platform web application to do that!!


Thank you.



Cypherinfo.

Re: nuBuilder To Do List

Posted: Fri May 21, 2010 3:32 pm
by cypherinfo
Hello, another good improvement would be to add the [page number/total page number] information as in the attached image.

Thank you.


Cypherinfo.

Re: nuBuilder To Do List

Posted: Wed Jun 30, 2010 4:55 am
by steven

Re: nuBuilder To Do List

Posted: Sat Jun 23, 2012 11:51 pm
by esstein
Hi,

Another good improvement is add a "Save and Select" button when we have added a new record when the page was opened from a lookup field.

Example:
save-and-select.jpg
save-and-select.jpg (39 KiB) Viewed 26180 times
Some inexperienced users closes the window without return to search screen. Other advantage is three step less to select new customer: save, back to search, search and select.

Evandro

Re: nuBuilder To Do List

Posted: Tue Jul 17, 2012 6:00 am
by admin
Evandro,

version 2.7.3 will be out soon and will have this feature..

When adding a record from a Lookup's Browse Form, the new record is taken straight back to the Lookup Object when saved.

Steven

Re: nuBuilder To Do List

Posted: Thu Sep 13, 2012 2:04 pm
by massyn
One more urgent item - encrypt the password. I see on the forum it's been asked a few times.

Re: nuBuilder To Do List

Posted: Fri Sep 14, 2012 8:09 am
by admin
massyn,

The next release will have it.

(in a couple of days)

Steven

Re: nuBuilder To Do List

Posted: Fri Sep 14, 2012 11:18 am
by esstein
Will be interesting if have a way to build a HTML report using a simple select, almost like a "Print" option of form.

The Report Builder is amazing, but position each field for all report is difficult. When we use table, it is not necessary. Fats and easy.

Thanks

Re: nuBuilder To Do List

Posted: Mon Jul 29, 2013 12:22 am
by massiws
This request arises from the need to have a system in which some rows in Browse Screen are selectable or not selectable, depending on a logic determined by the developer.
I suggest a solution, but I'd like to have the opinion from other developers on the forum and, of course, from nuBuilder Team!

Suppose that there is a field of the system, eg sys_selected (boolean), that the developer can add to their own tables (as sys_changed and sys_added).
In Custom Code > Before Browse it would be possible to run a query and, according to its own logic, the developer could set sys_selected to TRUE/FALSE, for example:

Code: Select all

$table = nuRunQuery("SELECT * FROM customer");
 
while ($row = db_fetch_array($table) {
   if ($row['cus_discount'] > 0) {
        $row['sys_selected'] = true;
   } else {
        $row['sys_selected'] = false;
   }
}
nuBuilder, while building the Browse Screen, should make rows selectable or non-selectable, based on the value contained in this field, basically remove the onclick attribute to all the columns of the row with zzsys_selected = false.

What do you think?

Max