Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
YiiはCArrayDataProvider(Yii 1.1.2)の組み込みの複数列ソートをサポートしていますか?はいの場合、どうすればよいか教えてください。私はyiiを初めて使用します。
ありがとうございました。
以下を試してください (Yii API Doc の例):
$dataProvider=new CArrayDataProvider($rawData, array( 'id'=>'user', 'sort'=>array( 'multiSort'=>true, 'attributes'=>array( 'id', 'username', 'email', ), ), 'pagination'=>array( 'pageSize'=>10, ), ));