Hi everybody.
I use this code for my published list grid :
<?php echo JHtml::_('select.options', JHtml::_('jgrid.publishedOptions'), 'value', 'text', $this->state->get('filter.published'), true);?>
But I want to customize it and not use "all" in options.
As I see in this documentation, we can do this by using array for configure it:
http://docs.joomla.org/JHtmlJGrid::publishedOptions/11.1
Something like array('published', 'unpublished')
But how can I change my code to do this?
Thanks
Novinfard