I am developing a Magento (1.7.0.2) module that has its own management area in the admin panel.
This area contains a form to update some settings which includes a text field to enter a product ID. Instead of this text field I would like to use a product chooser widget because checking for the right product ID and then manually entering the found ID in the form is a pain in the a**.
Currently the code for the mentioned text field looks like the following:
$fieldset->addField(
'product_id',
'text',
array(
'label' => $helper->__('Product'),
'class' => 'required-entry',
'required' => true,
'name' => 'product_id'
)
);
Is there an easy way to display a product chooser widget instead of the textfield?