fireburner69
Programmer
I have a XML with this structure:
<?xml version="1.0" encoding="UTF-8"?>
<cats>
<cat name="catname">
<cat_id>1</cat_id>
</cat>
<cats>
I add a list component and I want to pass the name as the title and the cat_id as the data! So when a user select the cat the data will be the id of the cat?
The way I am doing it in the list I have something like catname,1
Is there any way to make this?
Note: I use also XMLconnector in order to parse the XML.
So the binding I am doing is very simple!
Any ideas?
<?xml version="1.0" encoding="UTF-8"?>
<cats>
<cat name="catname">
<cat_id>1</cat_id>
</cat>
<cats>
I add a list component and I want to pass the name as the title and the cat_id as the data! So when a user select the cat the data will be the id of the cat?
The way I am doing it in the list I have something like catname,1
Is there any way to make this?
Note: I use also XMLconnector in order to parse the XML.
So the binding I am doing is very simple!
Any ideas?