Using JavaSript to change count in list count property
What is the best way to do this - thank you.
Catch up wih the Appery.io community on our forum. Here you'll find information on the lastest questions and issues Appery.io developers are discussing.
https://forum.appery.io/
What is the best way to do this - thank you.
Hello!
Could you clarify your question in more details?
Hi Maryna... sure: I have a mobile list called 'boblist' with an item named "messages" which has the counter visible property set to true. I want to set that counter value programmatically. Thanks.
Try this code:
pre$("#start_mobilelistitem_23 span").text('100');/pre
where start_mobilelistitem_23 - id of your list item.
Thank you Maryna... but unfortunately it does not seem to work. Do you think it needs some type of refresh?
Hi Robert.
Please try this code:
pre
code
jQuery('[name="messages"]:eq(0) .ui-li-count').text("counter_text")
/code
/pre
Where:
"messages" - is your listitem name. Like you mentioned above.
"eq(0)" - get first item. If you want to get 2nd item, you should to use "eq(1)" and so on.
Also if you have some problem with this code, please provide us details about how did you tryed it. Perhaps screen shots.
Regards.
That works perfectly Yurii - thanks a million.