• 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!

TOPIC: show part of numbers

show part of numbers 8 years 7 months ago #35860

hi
i have a field for phone number and i want show any submit form in view submissions menu
but i want show part of number in submission pages like this:
+228 87***44
The administrator has disabled public write access.

show part of numbers 6 years 9 months ago #38344

SOLVED ;)

create java script function and use this codes :

var str = document.getElementById('phonenumber').value;
var mb1 = str.substr(1, 6);
var mb2 = '***' ;
var mb3 = str.substr(9,11);
var res = mb1.concat(mb2,mb3);
document.getElementById('phonenumber_star').value = res ;
The administrator has disabled public write access.
  • 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!