Reputation: 7
I have built this sample project where I am adding masking to a input control. That is working fine but when I add a clone row I am losing the masking. Is there a way to keep the masking on the clone rows?
https://dotnetfiddle.net/6IKv50
$('#clone').click(function() {
var row = $("[id='ddRow_0']").clone();
$("[id='ddRow_0']").after(row);
});
Upvotes: 0
Views: 91