Hi all,
I'm experiencing nubuilderpro and I've got some issues with $nuHash while writing some validation code in BeforeSave section.
All I can see is that the array obtained from nuSubFormArray() seems to be empty... can't see what I'm doing wrong, hope you'll help....
I have a form named 'rf_user' in which I have a sub form 'ev_temps_subform'. the first column is a field names 'F_USERID'
the code :
$arr = nuSubformArray('ev_temps_subform');
for ($idx = 0 ; $idx < count($arr)-1 ;$idx++){
$v .= $idx+1 .' ' .$arr[$idx];
}
nuDisplayError('Tableau Element : '.$v.'---');
return;
gives this :
1 : 1 ev_temps_subform0001 2 ev_temps_subform0002....
the number of items seems to fit the number of lines of my subform.
but when I try to get one of the values with a code like this :
$arr = nuSubformArray('ev_temps_subform');
for ($idx = 0 ; $idx < count($arr)-1 ;$idx++){
$v1 .= $nuHash['ev_temp_subform0001F_USERID'];
// tried all the syntaxes I found evrywhere like $nuHash[$arr.idx.'F_USERID'] or $nuHash[$arr[idx]].'F_USERID] ....
}
nuDisplayError('Tableau Element : '.$v1.'---');
return;
I get something like that :
Tableau Element : ---
(Wampserver installation)
Thanks,
OLM.
Welcome to the nuBuilder Forums!
Join our community by registering and logging in.
As a member, you'll get access to exclusive forums, resources, and content available only to registered users.
Join our community by registering and logging in.
As a member, you'll get access to exclusive forums, resources, and content available only to registered users.
$nuHash in BeforeSave
Re: $nuHash in BeforeSave
OLM,
There was a bug but its fixed as of today.
So you can do a pull from github.
Steven
There was a bug but its fixed as of today.
So you can do a pull from github.
Steven
-
- Posts: 7
- Joined: Sat Feb 14, 2015 3:41 pm
Re: $nuHash in BeforeSave
Thanks for your quick reply...
I've never been to Github, using this link to install...: https://www.nubuilder.net/downloads.php
Have you already written a sort of tuto to get updated files from Github ?
Have a nice day too.
I've never been to Github, using this link to install...: https://www.nubuilder.net/downloads.php
Have you already written a sort of tuto to get updated files from Github ?
Have a nice day too.