help on compose dtRowId

help on compose dtRowId

pmengopmengo Posts: 74Questions: 37Answers: 2

@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
}

for composite keys purposes.
thanks

Answers

  • allanallan Posts: 61,814Questions: 1Answers: 10,123 Site admin

    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

  • pmengopmengo Posts: 74Questions: 37Answers: 2

    thanks . CreatedRow its just what i need.

This discussion has been closed.