tags:

views:

53

answers:

1

How do I pass disabled input elements (TT) from page 1 to page 2 in Catalyst framework?

I can do it with hidden input. Is there any other way to handle it?

A: 

From the specification

Disabled controls cannot be successful.

If you want to submit a disabled control, then you are probably doing it wrong. You probably want to use readonly instead.

David Dorward