@Allan . I need help to find where i can compose the rowId based on an array or object .
ex:
dtrowid='DtRow_id
$.each(primaryPk,function(pk,value){
dtrowid=dtrowid + '_' + value
}
If this is using the Editor libraries, then I'm afraid they do not support composite keys at this time. That will be addressed with v1.6.
If its with your own data, then can you just update the JSON data feed to include the combined composite key value? If not, then you could use createdRow to attach the id the way you want to create it.
Answers
If this is using the Editor libraries, then I'm afraid they do not support composite keys at this time. That will be addressed with v1.6.
If its with your own data, then can you just update the JSON data feed to include the combined composite key value? If not, then you could use
createdRow
to attach the id the way you want to create it.Allan
thanks . CreatedRow its just what i need.