The custom-method tag has no wiki summary.
0
votes
0answers
23 views
Implementing a custom query in Liferay
In a custom query I am using left outer join to display data from two tables.
I need to execute this and call a finder method in jsp. The results of the query should be displayed in the jsp file. In ...
0
votes
0answers
13 views
jquery validate custom method email already registered
i'm trying to create a custom method for jquery validate plugin that check if an email is already registered. This is the code, but the response is always false
...
0
votes
4answers
114 views
Javascript: how to create custom class with methods
I'm trying to create my own class for logging errors and messages to a database, but I'm new to creating custom classes and methods in Javascript. After plenty of research, I was able to put together ...
3
votes
1answer
173 views
jQuery validation fails when using .element(element) within custom method
i need help...
in short:
I have a custom rule that should check some dependencies by validating the other inputs this one depends on. When I do stuff like that validation for all other inputs seems to ...
0
votes
3answers
106 views
How to use prototype for custom methods and object manipulation
Honestly, I am trying to understand JavaScript prototypes and I'm not making much progress. I am not exactly sure how to explain what I am trying to do, except to say that in part my end goal is to ...
0
votes
1answer
198 views
Jquery Validation - Custom Method > determine whether any one of a set of radio buttons are checked
I have a group of radio buttons in a form, when certain buttons are checked, some additional fields are displayed and validation needs to be added. I am trying to do this by setting validation rules ...
0
votes
1answer
74 views
Custom query methods in NSManagedObejct
Is there a way to add a custom query method in a subclass of NSManagedObject?
I have a domain model called User, and a domain model called Message. I've set it up so that a user has a To-Many ...
3
votes
5answers
419 views
Workaround to use a method within a LINQ expression
In my ASP.NET MVC3 application I have the following method that use EF entities:
public IQueryable<Products> GetCreatedProducts(int year)
{
return GetAllProducts().Where(m => ...
1
vote
2answers
1k views
JQuery add validation method to validate regarding another element in the form
I'm trying to create a custom validation method in JQuery and I can't manage to make it work properly.
Here is what I want to do :
<div class="row">
<label ...
0
votes
3answers
305 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 ...
2
votes
1answer
940 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
189 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
162 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
1answer
1k 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 ...
4
votes
3answers
2k 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 ...
8
votes
2answers
1k 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 ...
0
votes
2answers
584 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
1k 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
767 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
5k 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 ...
1
vote
1answer
808 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 <= ...

