Hello,
I have a ListView with a custom adapter. The ListView allows multiple select, but somehow it's not recognising when an item is selected.
I've already made the adapter items extend Checkable, but still the getCheckedItemPositions() returns an array of falses.
I guess there's something fundamental I'm doing wrong, but I have been ...
I have a select list with multiple rows, and I want it to have a small X image at the end of each row so it deletes that row.
Any idea how I can do that through CSS or jQuery or something?? Thanks
...
Hi,
I have 3 multiple selects. In the first Select1(left) I load a group of modules. In the 3rd Select3(right) I load another group of modules. The user can select from the Left and hit an add to remove the item from the Left and append it to the Select2(Middle). The user can do the same with the Right, select items hit a different add...
I am creating multiple select element like this and it is showed successfully on form:
$element = new Zend_Form_Element_Multiselect('clinics');
$element->setLabel("Clinics");
$element->setAttrib( 'style','width: 240px' );
$element->setMultiOptions( array( '1'=>'clinic1', '2'=>'clinic2' ) );
After rendering above element it shows the f...