blackberry - Warning "name.xml" is not a supported asset file -
i made model.xml file in project. , try call using data modal
import bb.cascades 1.0 page { content: listview { datamodel: xmldatamodel { source: "model.xml" } listitemcomponents: [ listitemcomponent { type: "item" photolistitem { } } ] } } but here @ line " source: "model.xml" " giving me warning model.xml not supported asset file. want know why because model.xml contains images path , due warning images not loading
if file "model.xml" in asset folder in project, expect be, should refer asset:///model.xml
import bb.cascades 1.0 page { content: listview { datamodel: xmldatamodel { source: "asset:///model.xml" } listitemcomponents: [ listitemcomponent { type: "item" photolistitem {} } ]} }
Comments
Post a Comment