Hi,
I put some alert on script jquery-nt-browse.js:
case 2: //Change
actionname ='change_btn';
actionform = $('[data-nt-id="'+this.options.value+'"]').attr('data-nt-change');
if (!actionform){
actionform = this.options.formChange;
}
====>>>> alert(actionform+' , '+this.options.value); //SOFTVALE
break;
and
if (this.options.formpopup){
header = ''; // don't default the header when called from a browse.
***====>>>>> alert('2. '+actionform+' / '+this.options.parent+' / '+this.options.procedure+' / '+this.options.value) //SOFTVALE
ntd.push(actionform,'',header,1,action,null,this.options.procedure,this.options.value,'_parentProc_=' + this.options.parent,null,null,null,null,null,null,this.options.divId);
} else {
this.gotoPage(actionform,actionname,this.options.value);
}
return this;
and the ID is correct.
but i tried some test, if i insert a new record, everything (change button) works fine since i don't close server and start again.
What´s happen when i insert a new record and when don´t?
Thanks