控制YUI DataTable记录ID

时间:2010-09-25 07:25:00

标签: javascript yui

我在YUI中有DataTable,我希望记录ID来自我的数据,而不是yui-rec1 ...

我该怎么做?

2 个答案:

答案 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

或者您还需要其他东西吗?