Hello All, I'm having a warning show up in relation to virutal list views and I'm not sure why. The warning I receive is printed out to the console:
WARNING: The data interface of virtuallist is changed.
Message( 2386): Old data interface(data-dbtable) is still supported, but will be removed in next version.
Message( 2386): Please fix your code soon!
I'm not sure why this is being printed out because I'm not using the data-dbtable parameter in my virtual list view:
<script id="category_details_list_item" type="text/x-jquery-tmpl">
<li class="ui-li-has-multiline category_account_item" accountId="${ID}">
<a href="#" onclick="openAccountDetails('${ID}')" style="font-size: large;">
${NAME}
<span class="ui-li-text-sub">${NUM_OF_BILLS}</span>
</a>
</li>
</script>
Is this a warning I should be worried about or is it incorrectly being printed out? Thanks for your help!