12-18-2012 12:15 PM - edited 12-18-2012 12:47 PM
Hello,
I'm trying to create a list in QML, that has 3 associated radio buttons per list item and The list source is an xml file.
The list item is a text. The list item would read: " Are all applications processed in a uniform and consistent manner....."
I noticed that The text is too long for BB10 simulator screen and most of it is not displayed.
The radio buttons would be placed to the right hand side of the screen with each list item.
Here is what I have so far
ListView {
dataModel: XmlDataModel { source: "Chapter1.xml" }
function itemType(data, indexPath) {
return (indexPath.length == 1 ? 'header' : 'item');
}
}and
<model>
<header title="Application Processes and Requirements">
<item title="Are all applications processed in a uniform and consistent manner throughout " />
<item title="Are the same standardized application forms always used?" />
<item title="Are there clear written practices and documentation in place covering all aspects of the application processes for first time applicants and applications for renewal?" />
</header>
</model>
Thanks for the help