The Expander Plugin hides (collapses) a portion of an element's content and adds a "read more" link so that the text can be viewed by the user if he or she wishes. By default, the expanded content is followed by a "read less" link that the user can click to re-collapse it. Expanded content can also be re-collapsed after a specified period of time. The plugin consists of a single method, .expander(), with a bunch of options.
Usage ¶
$this->widget('ext.expander.Expander',array(
'content'=>'Content',
'config'=>array()
));
$this->widget('ext.expander.Expander',array(
'content'=>$model->description,
'config'=>array('slicePoint'=>600, 'expandText'=>'read more', 'userCollapseText'=>'read less', 'preserveWords'=>false)
));
Resources ¶
- [Project page]https://github.com/kswedberg/jquery-expander
Ajax
is there a way to execute an js inside an ajax request? I need to use the Widget inside a ClistView that is update by ajax request.
If you have any questions, please ask in the forum instead.
Signup or Login in order to comment.