Questions tagged [masking]

Force user input to conform to given rules.

Input masking restricts inputs for a given UI element without actually performing validation. Instead of collecting and validating user input, the masking approach restricts the inputs that a user can make in the first place.

An example of this would be a text field that is set to accept telephone numbers from a given country: instead of collecting digits and letters, and then validating them against the format, an input-masked field will only allow digits to be input, and will only accept them in an order that forms a valid input.

When dealing with arrays / matrices 'masking' means to ignoring certain parts of the array an only use the unmasked elements for further calculations.

1153 questions
0
votes
2 answers

Domain name point to subdomain of a entire different domain

I am completely confused the last few days with this and I still haven't found an outcome that's worked. Basically I have a domain name without hosting at letshost.ie which is dublinplasterer.ie I also Have one domain & hosting with godaddy for…
0
votes
1 answer

How to use url masking for dynamic url

I have not good idea about url masking. I know this is possible to make Current url to Target url but don't know how to do it for dynamic url. Is it possible to make the masking with php code. Current url:…
Rana
  • 128
  • 1
  • 13
0
votes
1 answer

How to clip or mask entity in android/andengine?

I want to implement masking with sprite in Andengine. I want same functionality as in ios class called SKCropNode which works like an masking node! Is there any workaround like this in andengine/opengl ? Thanks. Edit: This is something I was…
Harin
  • 2,413
  • 3
  • 15
  • 30
0
votes
1 answer

Simple bitmasking method in C to check bits

I am currently new to C as well as bitmasking and stuff like that and need some insight on how to make a program with 3 methods that checks to see if a bit is set and then manipulate it, with methods that - INSET: This function takes two parameters,…
newsb
  • 11
0
votes
1 answer

Ext JS 5.1- How a date field can be masked like 00/00/0000?

I am working with Ext JS 5.1 which is very new. So I can't able to find masking property. On page load I want a date field to be appearing as '00/00/0000'. With the help of reMask property I am able to restrict users to put only numbers there. But I…
AniLeo10
  • 1
  • 2
0
votes
1 answer

Change Masked Text into Plaintext from DBEdit

I have a DBEdit control, connnected to an ADO record set displaying a floating point number. This number has been masked as a currency through the field editor of the record set. This causes a currency sign to be displayed at the front of the…
James Paterson
  • 2,652
  • 3
  • 27
  • 40
0
votes
2 answers

Xcode remove color from image programmatically?

So I have an app where you move images around in certain positions and layer them. Its coming along well but an issue I keep running into is a lot of my images have white spaces around them (they use to be jpgs), the whitespace is always hexcode…
CMOS
  • 2,727
  • 8
  • 47
  • 83
0
votes
2 answers

Jquery script doesnt work

I'm newbie with jQuery and I my facing the following problem. I'm trying to use a mask, but the script doesn't work. At all. The code Document
0
votes
3 answers

Send $_POST to masked site

I have issue with sending form using PHP. I have one page domain1.com with script and second domain2.com with masking to first domain. The second domain domain2.com is visible in browser but the script works under domain1.com I try send $_POST data…
Maximi
  • 559
  • 5
  • 18
0
votes
1 answer

disable masking for input type password

Is there a way to disable masking for ? I tried input[type='password'][name='TxtPassword]{ -webkit-text-security: none !important;} But this didn't work. Thanks in advance.
BetRob
  • 251
  • 1
  • 7
  • 12
0
votes
1 answer

Url Masking directory

I want to mask a whole directory and their files in order to show just the main URL From: www.domain.com/directoryX/directoryY/index.html or www.domain.com/directoryX/index.php` To: www.domain.com I don't know how to do this with .htaccess, any…
Winebous
  • 51
  • 1
  • 4
0
votes
1 answer

Removing masking out of textbox value before post in MVC

So I am looking to solve what I have found to be a pretty particular issue. Essentially I have models in Microsoft MVC that have decimal fields. I am to display these fields in views with masking on them that includes commas (money values separated…
DeveryDay
  • 161
  • 15
0
votes
1 answer

iOS - masking with colorWithPatternImage without repeating on .png file

I'm triying to fill with pattern my mask images (.png) UIImageView *imageView = (UIImageView*)_maskView.contentView; imageView.image = [imageView.image imageWithRenderingMode:UIImageRenderingModeAlwaysTemplate]; imageView.tintColor = [UIColor…
Arda Oğul Üçpınar
  • 881
  • 1
  • 14
  • 38
0
votes
1 answer

Calculate RGB Image Matrix with several custom matrices in C++ OpenCV

Helllo, I'm newbie in C++ OpenCV programming. I have one colour image, and i want that image multiplied with several matrices (masking). This is the outline of code: #include #include #include…
0
votes
1 answer

Masking FLV video in AS3 with PNG alpha channel

I'm trying to mask an FLV with a PNG alpha channel. I'm using BitmapData (from a PNG) but it's not working. Is there anything I'm missing? Cut up code below: var musclesLoader:Loader = new Loader(); var musclesContainer:Sprite = new Sprite(); var…