我正在尝试通过表单设置自定义属性值。但是,如果我再次单击该元素,它将显示先前分配的属性,而不是显示该属性。
我想从用户输入SiteStation变量的值并将其分配给该特定元素。对于我的元素在图表上的时间,它应该具有该值。
http://jsfiddle.net/avinash2618/6umUH/157/
cell.set('attributes/stationName',stationName);
答案 0 :(得分:1)
您可以尝试设置自定义属性的text属性,如下所示
cell.attr('stationName/text', stationName);
或 如果它是一个视图
cellView.model.attr('stationName/text', stationName);