{
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>',
}]
以上是手风琴视图中的项目之一。我的问题是我想为列表中的每个项目添加一个单选按钮,以便我知道用户选择的运输类型。我可以在 div 内的 itemTpl 中添加单选按钮吗?请帮助我解决这个问题