[solve] picklist - mandatory - Printable Version +- CoreBOSBB (https://discussions.corebos.org) +-- Forum: Support (https://discussions.corebos.org/forumdisplay.php?fid=17) +--- Forum: Administrator Support (https://discussions.corebos.org/forumdisplay.php?fid=8) +--- Thread: [solve] picklist - mandatory (/showthread.php?tid=728) |
[solve] picklist - mandatory - rslemer - 09-19-2017 How a field type picklist work when is set for mandatory? In fact, for me, appears, nothing happen RE: picklist - mandatory - joebordes - 09-19-2017 There are two ways of making a picklist mandatory. One is to add an empty string in the list: https://discussions.corebos.org/thread-617.html The other is using business map validations: http://corebos.org/documentation/doku.php?id=en:adminmanual:businessmappings:validations Look at the cbCalendar activitytype example RE: picklist - mandatory - rslemer - 10-07-2017 I think the alternative, add a blank value in list is the way vTiger solved this problem. This option can be included, in future, when user, at layout editor, choose mandatory on picklist ( enhanced feature ) I can do a mask in field with a business map too? and check if number is correct ( DG ) ? How I can created a custom function? there any documentation or example? RE: picklist - mandatory - joebordes - 10-07-2017 There are a lot of supported validation types. Among those there is a REGEX validation which you could probably use to validate the mask you need. If you cannot do it with a REGEX, look at the last map on the documentation page, that one has an example of how to add a custom function. RE: picklist - mandatory - rslemer - 02-12-2018 (09-19-2017, 08:18 PM)joebordes Wrote: There are two ways of making a picklist mandatory. I try eliminate a value --None-- for leadsource in leads module, but not working. What I do wrong? <map> <originmodule> <originname>leads</originname> </originmodule> <fields> <field> <fieldname>leadsource</fieldname> <validations> <validation> <rule>notIn</rule> <restrictions> <restriction>--Nada--</restriction> </restrictions> </validation> </validations> </field> </map> I test in demo on line RE: picklist - mandatory - joebordes - 02-12-2018 discusion: https://discussions.corebos.org/showthread.php?tid=892 |