2

I have applied filed validation in system.xml file it is working for other fields but not applying on Dynamic fields.

Here is my Dynamic Field:

 <field id="add_item" translate="label" sortOrder="15" showInDefault="0" showInWebsite="1" showInStore="0">
 <label>Set Dropdown Prices</label>
 <frontend_model>Vendor\Module\Block\Adminhtml\Menu\Field\AdditionalItem</frontend_model>
 <backend_model>Vendor\Module\Block\Adminhtml\Menu\Config\Backend\AdditionalItem</backend_model>
 <validate>validate-digits</validate>
 </field>

Update

Here is my column in Frontend Model:

$this->addColumn(
 'productcost',
 [
 'label' => __('Voucher Cost'),
 'size' => '150px',
 'class' => 'required-entry'
 ]
 );
asked Apr 25, 2019 at 7:05
0

1 Answer 1

1

Move size into style class

 $this->addColumn('productcost', ['label' => __('Voucher Cost'),'class' => 'required-entry validate-number','style' => 'width:50px']);
answered Apr 25, 2019 at 7:29
5
  • required-entry class is already in my frontend model but it has no effect, please see the update in question Commented Apr 25, 2019 at 9:14
  • Kindly share error log Commented Apr 25, 2019 at 9:21
  • Yes moving size in style worked for me.. Can u tell how to limit the number of dynamic rows like we should extend it up to 20 rows.. Commented Apr 25, 2019 at 9:37
  • Good question Ajwad Taqvi. Kindly post as another question. Commented Apr 25, 2019 at 9:49
  • Posted: magento.stackexchange.com/questions/272414/… Commented Apr 25, 2019 at 10:22

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.