开发者

How to control column headings in the NEW/EDIT views based on the CATEGORY selected from a drop-down list. Ruby on Rails w/ MYSQL

开发者 https://www.devze.com 2023-03-24 16:05 出处:网络
Two models: category has_many: components component belongs_to: category The CATEGORY table defines variable names for different component types:

Two models:

category has_many: components
component belongs_to: category

The CATEGORY table defines variable names for different component types:

TYPE, VAR1, VAR2, VAR3, ...

Insulator, Voltage, Height, Material, ...

Current Transformer, Voltage, Ratio, Indoor, ...

In the NEW/EDIT views for the COMPONENT model, the user will first section the CATEGORY from a drop-down list. Based on the CATEGORY selected the column headings and field labels in the form(s) need to dynamically update to indicate the variable names associated with the selected CATEGORY.

i.e. IF the user selects CATEGORY = Insulator THEN the field labels for VAR1 ... VAR开发者_Go百科3 are Voltage, Height, Material, etc.

I assume this will be controlled in the _form.html.erb of a typical scaffold. I am looking for a recommended technique.

Thanks in advance any information.


Changing a form in response to a user selecting a different option in a select tag is probably best done by Javascript. This allows for execution on the client side, which will be faster than a trip back to the server.

I would recommend placing the different form fields inside a div tag that is hidden when the page loads. Each of the combinations of categories can be toggled to show in the form by binding to the Javscript onChange event on the select tag.

Here is more information on the select tag: http://www.w3schools.com/jsref/event_onchange.asp

0

精彩评论

暂无评论...
验证码 换一张
取 消