Tagged Questions
The custom-method tag has no wiki summary.
6
votes
2answers
391 views
Can I add custom methods/attributes to built-in Python types?
For example—say I want to add a helloWorld() method to Python's dict type. Can I do this?
JavaScript has a prototype object that behaves this way. Maybe it's bad design and I should subclass ...
1
vote
2answers
447 views
Workarounds for using custom methods/extension methods in LINQ to Entities
I have defined a GenericRepository class which does the db interaction.
protected GenericRepository rep = new GenericRepository();
And in my BLL classes, I can query the db like:
public ...
1
vote
1answer
691 views
How to disable custom validation method on condition
I use jQuery Validation plugin to ensure what user entered positive *cost_of_car* in first text field and positive *payment_amount* in second text field such what *cost_of_car * 0.4 <= ...
0
votes
3answers
88 views
RoR 3: Model Validation Question (Custom method after some validation passes)
Ok.
1) I need to validate :link in my model and do that only if it is not blank (or nil).
2) If :link is not blank and standard validation passes — I need to run my custom validation method to ...
0
votes
0answers
88 views
Create and use a custom Xcode Utility class
I have this code in a method that plays a sound file called Mysound.wav:
-(void)Playsound{
CFBundleRef mainBundle = CFBundleGetMainBundle();
CFURLRef soundFileURLRef;
soundFileURLRef = ...
0
votes
1answer
125 views
ActiveRecord Validation: association saved even if validation failed
Errors are added to error object of record but associations are still saved.
class Parent < ActiveRecord::Base
validate :valid_child?
#validation methods
protected
def ...
0
votes
1answer
76 views
jQuery Validate() addMethod forces “required:true”
So i got a form with the jQuery validate() plugin. I added a custom method to check if the CNPJ (id number for companies in Brazil) is valid or not. The field is not required, i just wish to check its ...
0
votes
1answer
81 views
UIWebView calling custom method?
I am having trouble in calling a method that I defined screenCap by a UIWebView. Basically, I have two UIWebView declared: firstWebView and secondWebView.
I ran a javascript to extract some HTML ...
0
votes
0answers
397 views
Adding custom remove method to Raphael JS Graffle Connection
I'm using the custom connection method (Raphael.fn.connection) added in the example found at: raphaeljs.com/graffle.html
My example is here: http://jsfiddle.net/WwT2L/ (scroll in the display window ...
0
votes
2answers
342 views
REST API: Custom method using cookies and sessions
I am trying to use REST API, so I want get a @current_user in APP2 from a RoR APP1.
In APP1/config/routes.rb I have this code:
resources :users do
collection do
get 'current'
end
...
0
votes
3answers
346 views
Custom Method in LINQ to SQL query
Is it possible to use custom method In query for example:
var result = from u in context.MyTable where MyMethod(u) == 10 select u;
0
votes
1answer
597 views
Rails does not display error messages on a form in a custom method
I've created a custom method called checkout in my app. I create an order (which is done my adding products to my "cart"), assign it to my client, and then I head to my checkout screen where I confirm ...
0
votes
2answers
3k views
jQuery validation custom method didn't work
I have added a method on jQuery validator like this
$.validator.addMethod('myEqual', function (value, element) {
return value == element.value; // this one here didn't work
}, ...