Page 1 of 1

nuGetRowObjectValue dont work loopkup

Posted: Wed Feb 06, 2013 6:48 pm
by Hawkman

Code: Select all

document.getElementById('hidden_fabid').value = nuGetRowObjectValue('albd_concepto_id');
This works well if the field is type text, but does not work if lookup type. How I can get the value of lookup code?

Sorry for my bad English

Re: nuGetRowObjectValue dont work loopkup

Posted: Fri Feb 08, 2013 6:12 am
by admin
Hawkman,

If albd_concepto_id is the lookup id, codealbd_concepto_id is the code.

I hope this helps

Steven

Re: nuGetRowObjectValue dont work loopkup

Posted: Fri Feb 08, 2013 1:48 pm
by Hawkman
Thanks, solved, this was what I wanted

Code: Select all

document.getElementById('alb_facturado').value = document.getElementById('code'+nuGetRow()+'albd_cantida').value;

Re: nuGetRowObjectValue dont work loopkup

Posted: Sat Feb 09, 2013 12:43 am
by admin
.