Hi,
In nuBuilderPro I use bread crumb title, but there is no `sfo_breadcrumb_title` in the table `zzzzsys_form` and in zzzzsys_form.
Adding these field in the form and in the table solved the problem.
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.
Bug in bread crumb?
Bug in bread crumb?
You do not have the required permissions to view the files attached to this post.
Re: Bug in bread crumb?
KEE,
In nuBuilder Forte you can use nuSetTitle() inside a Form's Javascript to set a Breadcrumb's title.
http://wiki.nubuilder.net/nubuilderfort ... nuSetTitle
Any changes you make to the structure of any zzzzsys_ tables will get over written next time you run Update.
Steven
In nuBuilder Forte you can use nuSetTitle() inside a Form's Javascript to set a Breadcrumb's title.
http://wiki.nubuilder.net/nubuilderfort ... nuSetTitle
Any changes you make to the structure of any zzzzsys_ tables will get over written next time you run Update.
Steven
Re: Bug in bread crumb?
Thanks,
$r->sfo_breadcrumb_title in the function nuBredkrumbDescription() is atavism?
$r->sfo_breadcrumb_title in the function nuBredkrumbDescription() is atavism?
Code: Select all
function nuBreadcrumbDescription($r, $R){
if($R == '') {return $r->sfo_description;} //-- Browse Form
if($R == '-1'){return $r->sfo_description;} //-- new record
if(trim($r->sfo_breadcrumb_title) == '') {return $r->sfo_description;} //-- no breadcrumb
$b = nuReplaceHashVariables($r->sfo_breadcrumb_title);
if(strtolower(substr(trim($b), 0, 6)) == 'select'){
$t = nuRunQuery($b);
$r = db_fetch_row($t);
return $r[0];
}
return nuReplaceHashVariables($r->sfo_breadcrumb_title);
}
-
- Posts: 785
- Joined: Sun Oct 14, 2018 11:25 am
Re: Bug in bread crumb?
Looking at the table zzzzsys_form, there is no "sfo_breadcrumb_title" in nuBuilder Forte. I this a remnant of nuBuilder Pro?admin wrote:I'm not sure what you are saying.
Code: Select all
if(trim($r->sfo_breadcrumb_title) == '') {return $r->sfo_description;} //-- no breadcrumb
Re: Bug in bread crumb?
Guys,
Yes, sfo_breadcrumb_title has been removed from Forte - if that's what you are asking.
Steven
Yes, sfo_breadcrumb_title has been removed from Forte - if that's what you are asking.
Steven