Swedish characters bug?

Home Forums Classic DFFS Swedish characters bug?

Viewing 1 reply thread
  • Author
    Posts
    • #19145
      Niclas Hultberg
      Participant

        Fields that stats with Å, Ä and Ö. If you put that filed on the first tab, field is missing, but if you toggle tabs it shows up.
        There is no problem using Swedish characters å,ä,ö in filed names, it is when it starts with å, ä, ö. Fieldinternalname is starting with _x00… The type of filed doesn`t matter.
        And I am using version v4.4.3.32

        Attachments:
      • #19151
        Alexander Bautz
        Keymaster

          Hi,
          This issue was caused by an old snippet in the SPJS_vLookup_frontend.js file where all fields with an internal name starting with “_” would be initially hidden.

          I’ll fix this in the next version, but until then you can fix it by adding this to your Custom JS:

          spjs.vLookup.init_vLookupFields = function (){
          	spjs.vLookup.fields = {};
          	jQspjs.each(spjs.utility.data.fields,function(fin,tr){
          		spjs.vLookup.fields[fin] = {"tr":tr,"fin":fin,"disp":tr.FieldDispName,"type":tr.FieldType};
          	});
          	spjs.vLookup.init_vLookupID();
          };

          Alexander

      Viewing 1 reply thread
      • You must be logged in to reply to this topic.