我在YUI中有DataTable
,我希望记录ID来自我的数据,而不是yui-rec1
...
我该怎么做?
答案 0 :(得分:1)
这是一个名为_sId的私有财产,用于存储记录ID。它遵循这种模式
this._sId = "yui-rec" + this._nCount;
很抱歉,但recordSet API不允许您修改记录ID。
答案 1 :(得分:0)
我认为你可以使用
dataTAble.getRecord
方法
YAHOO.widget.Record getRecord ( row )
For the given identifier, returns the associated Record instance.
Parameters:
row <HTMLElement | Number | String> DOM reference to a TR element (or child of a TR element), RecordSet position index, or Record ID.
Returns: YAHOO.widget.Record
Record instance.
http://developer.yahoo.com/yui/docs/YAHOO.widget.DataTable.html
或者您还需要其他东西吗?