CoreBOSBB
Business Maps ListColumns for some user don't display all field - 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: Business Maps ListColumns for some user don't display all field (/showthread.php?tid=2160)



Business Maps ListColumns for some user don't display all field - addady2 - 05-18-2021

Hi,

I found a bug on my installation and I reproduce it on Corebos demo.
In the demo crm I createed Business Maps HelpDesk_ListColumns.

https://demo.corebos.com/index.php?module=cbMap&action=DetailView&viewname=0&start=&record=43464&;

When global search the same string User admin see all fields in the Business Maps, but for user User cdTest don't see one of the fields. The field "Title" is missing.

Attach screenshots


RE: Business Maps ListColumns for some user don't display all field - joebordes - 05-18-2021

reproduced locally. will have a look and get back to you


RE: Business Maps ListColumns for some user don't display all field - joebordes - 05-18-2021

I had a look. The issue is that you have to give the field name, not the column name.

Code:
<linkfield>ticket_title</linkfield>

Code:
<field>
      <label>Title</label>
      <name>ticket_title</name>
</field>

I changed the business map code for it to check if you are giving the column name and adapt accordingly. I haven't released that code yet as I am currently validating some other changes. It will be available soon. In the meantime use the field name.

Let me know how it goes


RE: Business Maps ListColumns for some user don't display all field - addady2 - 05-19-2021

Thank you