search for: mobilenumb

Displaying 4 results from an estimated 4 matches for "mobilenumb".

Did you mean: mobilenum
2009 Aug 31
2
Asterisk Regular expression to validate any phonenumber
Hi I am using asterisk version 1.6.0.5 I have build up one utility that will fire Originate Action on Manager... In which, i have define number to call eg. 919912312345 (MobileNumber) How can i know that this number format is true for Indian Number... In originate action, user can enter any international number.. How can I came to know this number format is right for that country...?? IS there any regular expression to validate this number ..... regards Dhaval ------------...
2011 Sep 02
0
No subject
typing his number, though there is a 15 seconds timeout, and even if I type the number very fast it still may happen to me. *same => n,Read(mobileNumber,app/input-mobile,10,,2,15)* In the logs: When it fails: - - <SIP/ipbx-iwred-000002e> Playing 'app/input-mobile.slin' (language 'fr') - - User disconnected When it succeeds: - - <SIP/ipbx-iwred-000002e> Playing 'app/input-mobile.slin' (language 'fr') -...
2006 Apr 14
1
SaltedHashLoginGenerator Integration Woes
...# Add all changeable user fields to this array. 10 # They will then be able to be edited from the edit action. 11 :changeable_fields => [ ''firstname'', ''lastname'', ''phonenumber'', ''faxnumber'', ''mobilenumber'', ''companyname'', ''email address'', ''description'' ], 12 13 } 14 end But yet I get this error: uninitialized constant Userprofiles Extracted source (around line #3): 1: <%= form_input :hidden_field, ''for...
2006 Feb 13
0
Including a Module within a model
If I have a module with a callback in it: module Sanitize module PhoneNumber def before_validation self.phone.gsub!(/\D/, '''') if attribute_present?(''phone'') end end module MobileNumber def before_validation self.mobile.gsub!(/\D/, '''') if attribute_present?(''mobile'') end end end and then I include that within my model: class Contact < ActiveRecord::Base include Sanitize::PhoneNumber end Why doesn''t it work...