Page 1 of 1

Change label in a list

Posted: Tue May 10, 2016 8:16 am
by Kinson Sa

I try to search but I did not find the solution.

I have a list that contain grid and label, my problem is that when a button click it search on data base and I need to change all labels to new name. I use this in mapping:

Apperyio("mobilelabel_61").text("Salida");

But only first item on list change the label, other item labels do not change.

Any idea?

Thanks in advance.
Pedro


Change label in a list

Posted: Tue May 10, 2016 11:42 am
by Serhii Kulibaba

Hello,

Please se JS below for that:
pre$("[name=mobilelabel_61]").text("Salida"); /pre


Change label in a list

Posted: Tue May 10, 2016 12:57 pm
by Kinson Sa

Dear Sergiy, it works thanks.