Table Type field query

Deepa Srivastav
Kilo Sage

Dear All,

I have a "table name" type field whose base table is alm_asset. According to my requirement it should show all extended tables except one/two. Also it shows table name in bracket i.e. dropdown value are in format ... Hardware[alm_hardware] etc, which we don't want.

To implement this I have added tableschoicescript attribute in the field and hardcoded extended table names there..

But problem is that I want first option to be "--None--" but in the field by default some other value is coming from script include (one of the table name) when I open the form .It is proper if I click the dropdown.

I wrote a client script to to add "--None--" in index 0..but nothing is helping..

Can somebody suggest me way to achieve this..Please check screenshots for reference.

Thanks in advance!

find_real_file.png

find_real_file.png

find_real_file.png

find_real_file.png

1 ACCEPTED SOLUTION

I haven't used that Attribute before so I am not sure how to do it at source (Script include)



But DOM manipulation is unnecessary and you can add a onload script for this.



g_form.addOption('u_table_choice_example','','-- None --',0);


g_form.setValue('u_table_choice_example','');


View solution in original post

15 REPLIES 15

I haven't used that Attribute before so I am not sure how to do it at source (Script include)



But DOM manipulation is unnecessary and you can add a onload script for this.



g_form.addOption('u_table_choice_example','','-- None --',0);


g_form.setValue('u_table_choice_example','');


That works Kalai ,Thanks again for your help


Hi Kalai,



g_form.setValue('u_table_choice_example','');



Just noticed after using these line, other check box fields are becoming read only on next onLoad 😮 too weird..if I remove this then field become editable again.


you can check this on Model Category from in asset..



Thanks,


Deepa



find_real_file.png


Fixed this Kalai.....


This helped me to resolve an issue this was pending from long



Thanks,


Astha