{
itemId : 'shippinglist',
title : 'Shipping Services',
height : 500,
layout : 'fit',
collapsed: true,
items: [{
xtype : 'list',
itemId : 'list2',
store : 'Checkout',
itemTpl : '<div>Shipping Type: {shipping_type}</br>Amount: ${amount}</div>',
}]
the above is one of the items in the accordion view. my problem is I want to add a radio button to each item in the list so that I will know what shipping type the user has selected. Can I add radio button in itemTpl inside div.please help me on this issue