Tagged Questions
The bind tag has no wiki summary.
156
votes
19answers
167k views
jQuery Event Keypress: Which key was pressed?
With jQuery, how do I find out which key was pressed when I bind to the keypress event?
$('#searchbox input').bind('keypress', function(e) {});
I want to trigger an submit when ENTER is pressed.
...
41
votes
5answers
6k views
PHP PDO: Can I bind an array to an IN() condition?
I'm curious to know if it's possible to bind an array of values to a placeholder using PDO. The use case here is attempting to pass an array of values for use with an IN() condition.
I'm not very ...
26
votes
10answers
10k views
What is the difference between the bind and live methods in jQuery?
I'm curious to know the differences between the bind and live functions.
To me they seem to be almost identical.
I read the benefits of live/bind methods, but it didn't tell me about the ...
24
votes
4answers
7k views
Python: Bind an Unbound Method?
In Python, is there a way to bind an unbound method without calling it?
I am writing a wxPython program, and for a certain class I decided it'd be nice to group the data of all of my buttons together ...
17
votes
3answers
3k views
C++0x, How do I expand a tuple into variadic template function arguments?
Consider the case of a templated function with variadic template arguments:
template<typename Tret, typename... T> Tret func(const T&... t);
Now, I have a tuple t of values. How do I call ...
14
votes
2answers
244 views
Reason behind using 'instanceof function() {}'?
On Mozilla Developer Center, there is a page about the Function.prototype.bind function and provides a compatibility function for browsers which do not support this function.
However, when analyzing ...
14
votes
3answers
3k views
13
votes
1answer
805 views
Nested bind expressions
This is a followup question to my previous question.
#include <functional>
int foo(void) {return 2;}
class bar {
public:
int operator() (void) {return 3;};
int something(int a) ...
13
votes
6answers
2k views
Bind Vs Lambda?
I have a question about which style is preferred: std::bind Vs lambda in C++0x. I know that they serve -somehow- different purposes but lets take an example of intersecting functionality.
Using ...
11
votes
2answers
209 views
Is std::bind still useful compared to lambdas? [closed]
Possible Duplicate:
Bind Vs Lambda?
My use of std::bind had dropped to 0 now that lambdas have gained wide support.
Are there any problems that std::bind is uniquely suited for over a ...
10
votes
6answers
235 views
What's the difference between `on` and `live` or `bind`?
In jQuery v1.7 a new method, on was added. From the documentation:
‘The .on() method attaches event handlers to the currently selected set of elements in the jQuery object. As of jQuery 1.7, the ...
9
votes
2answers
2k views
Can't use ServerSocket on Android
I'm trying to listen on a port using ServerSocket on an Android device. I want to be able to connect to this port over WiFi using a computer on the same network.
I get no exception when binding it to ...
9
votes
4answers
13k views
jQuery how to bind onclick event to dynamically added HTML element
I want to bind an onclick event to an element I insert dynamically with jQuery
But It never runs the binded function. I'd be happy if you can point out why this example is not working and how I can ...
8
votes
4answers
902 views
jQuery bind efficiency
I'm having issue with load speed using multiple jQuery binds on a couple thousands elements and inputs, is there a more efficient way of doing this?
The site has the ability to switch between ...
8
votes
4answers
3k views
Boost.Bind to access std::map elements in std::for_each
I've got a map that stores a simple struct with a key. The struct has two member functions, one is const the other not. I've managed calling the const function using std::for_each without any ...
7
votes
1answer
145 views
C++: conjunction of binds?
Suppose the following two functions:
#include <iostream>
#include <cstdlib> // atoi
#include <cstring> // strcmp
#include <boost/bind.hpp>
bool match1(const char* a, const ...
7
votes
2answers
3k views
How do I “rebind” the click event after unbind('click')?
I have an anchor tag <a class="next">next</a> made into a "button". Sometimes, this tag needs to be hidden if there is nothing new to show. All works fine if I simply hide the button with ...
7
votes
3answers
3k views
jQuery: Binding and Unbinding Live Click Events
So there are two constraints to my question:
I must use an external function call in my click event, and
I must use a live click event, rather binding a typical click event.
So my problem is that ...
6
votes
2answers
87 views
Opposite of std::bind, add dummy parameters to function
I need something that is the opposite of std::bind, that adds dummy parameters to a function signature instead of how boost::bind binds parameters away.
e.g. I have this function:
...
6
votes
3answers
632 views
How can I pass MySQL functions as bind parameters in prepared statement?
I'm trying to do this:
$sth = $dbi->prepare('INSERT INTO table VALUES (?, ?, ?)');
$sth->execute(
$var1,
$var2 || 'NOW()',
$var3
);
without any luck. Any ideas?
6
votes
4answers
2k views
boost::bind with null function pointers
If the function pointer embedded in a boost::bind return object is NULL/nullptr/0, I need to take action other than calling it. How can I determine if the object contains a null function pointer?
...
6
votes
6answers
2k views
Is std::map + std::tr1::bind + standard algorithms worthwhile?
This is a follow-up to my question from yesterday. I have Scott Meyers' warning about write-only code on my mind. I like the idea in principle of using standard algorithms to access the keys or ...
6
votes
2answers
9k views
Dynamically bind data to dropdownlist in asp.net mvc
How to dynamically bind data to <%Html.Dropdownlist.... in asp.net MVC?
Regards,
Ambika
5
votes
2answers
292 views
How can boost::bind call private methods?
boost::bind is extremely handy in a number of situations. One of them is to dispatch/post a method call so that an io_service will make the call later, when it can.
In such situations, boost::bind ...
5
votes
1answer
510 views
C++0x function<>, bind and members
I tried to follow Bjarne Stroustups explanation of the function template. I specifically played with the interchangability of c-function-pointers, functors, lambdas and member-function-pointers
Given ...
5
votes
3answers
262 views
Does boost::bind cause overhead?
I am currently working on network software. It has one main class, server which obviously represents a server instance.
A server instance can send requests and the user is notified of the response by ...
5
votes
1answer
288 views
std::bind not working
I can't get std::bind to work the same way boost::bind works. Either I'm not using it correctly, or my compiler (GCC 4.4.5) doesn't implement it correctly yet.
I have two functions:
void f(int x, ...
5
votes
1answer
724 views
SQLite: bind list of values to “WHERE col IN ( :PRM )”
all I want to do is send a query like
SELECT * FROM table WHERE col IN (110, 130, 90);
So I prepared the following statement
SELECT * FROM table WHERE col IN (:LST);
Then I use
...
5
votes
1answer
1k views
jquery bind keyup to body in firefox
i m binding keyup function in jquery to body which works in every browser
except firefox
the code: -
$('body').bind('keyup', function(e) {
//alert ( e.which );
alert('testing');
});
how ...
5
votes
2answers
430 views
What libraries do I need to use std::placeholders?
Currently I am trying to generate combinations and I am using the following code:
#include <vector>
#include <algorithm>
#include <iostream>
#include <functional>
...
5
votes
1answer
284 views
Unbinding in jQuery
If an element is removed from the page, does it automatically unbind? Or is this a scenario in which one ought to unbind using jquery's unbind?
I assume it's done automatically...
5
votes
2answers
539 views
Are there boost::bind issues with VS2010?
I had the following code line which compiles just fine under g++ and Visual Studio prior to 2010.
std::vector<Device> device_list;
boost::function<void (Device&, ...
5
votes
3answers
435 views
What's the point of using boost::mem_fn if we have boost::bind?
I'm having a look at the Boost libraries that were included in C++'s Technical Report 1 and trying to understand what each does.
I've just finished running an example for boost::mem_fn and now I'm ...
4
votes
2answers
125 views
bind with INADDR_ANY
If I bind a socket to INADDR_ANY I know that it will accept incoming connections on any of IPs configured on the server. Lets say I have 1 IP configured when I make the bind() call and then a new IP ...
4
votes
2answers
167 views
C++0x lambda wrappers vs. bind for passing member functions
This is basically a question about the readability, style, performance of 2 different approaches to creating/passing a functor that points to a member method from within a class constructor/method.
...
4
votes
2answers
179 views
Pattern match for variable in scope (Scala)
In the following code
val x = 5
val y = 4 match {
case x => true
case _ => false
}
the value y is true. Scala interprets x to be a free variable in the pattern match instead of binding it ...
4
votes
2answers
139 views
Is there something for function composition in <functional>?
What I want to do is done pretty easily with C++0x lambdas. I just want to figure out how to do it with bind1st and bind2nd only.
I need to find the first element i in the vector v, such that ...
4
votes
3answers
154 views
Can binding out-of scope variables speed up your code?
I've been doing a lot of work in Node JS recently, and it's emphasis asynchronous modules has me relying on applying the bind function on closures to wrap asynchronous calls within loops (to preserve ...
4
votes
1answer
222 views
c++0x lambdas, not letting me pass as function ptr
I am currently writing a program in C++0x which I am fairly new to.
I am setting up callbacks between objects and using lambda to match the types (like boost::bind() does in ways)
If I call a ...
4
votes
6answers
339 views
Passing jQuery .click() a function as a variable
I'm working with a tabbed interface and have the following jQuery function set up to handle the click events of my tabs.
$(document).ready(function () {
$('a#foo').click(function() {
...
4
votes
5answers
343 views
In JQuery when should you use .bind() over .click() - or any other given event?
I understand the difference between Live and Bind but when should I use use .bind() over a 'standard' event method as shown below.
Are there any key differences in the way these two calls work?
...
4
votes
2answers
1k views
jquery bind focus / blur events to AJAX loaded content
I have this script which works fine to add / remove a class on blur / focus on text inputs and textareas - however I need to bind it to also work on content added after page load via AJAX:
...
4
votes
1answer
284 views
Binding a template function from within a template
In a continuation from this question. I'm trying to bind a given function that returns something-other-than void to be able to simply call f() later. However the following code fails to compile on GCC ...
4
votes
2answers
113 views
What makes binding slow?
Is it the process of doing the binding, or the having many things bound that's the primarily issue of binding more events than necessary?
The answer's probably both, but to what extent?
Also, I ...
4
votes
4answers
399 views
How to bind a constructor in C++?
Needless to over explain. The following code is self-evident:
struct X
{
X(int n){}
};
int main()
{
std::vector<int> src;
std::vector<X> dest;
// Below is not valid in ...
4
votes
1answer
435 views
std::priority_queue: Custom ordering without defining comparator class
I want to have a priority queue with custom ordering, but lazy as I am, I don't want to define a comparator class implementing operator().
I really would like something like this to compile:
...
4
votes
4answers
285 views
Haskell: Scope of variable when using lambda expression with bind functions
The following line works as expected, but I am a little concerned why:
getLine >>= \x-> getLine >>= \y-> return [x, y]
Consider the addition of parenthesis to scope the lambda ...
4
votes
2answers
635 views
Boost binding a function taking a reference
I am having problems compiling the following snippet
int temp;
vector<int> origins;
vector<string> originTokens = OTUtils::tokenize(buffer, ","); // buffer is a char[] array
// ...
4
votes
3answers
998 views
jQuery: textbox keyup firing twice
i'm having a textbox and assigned the following function (it's the only function assigned):
txt.bind("keyup",function(event){
if(event.keyCode==13)
{
var nu = $("#debug").html();
...
4
votes
5answers
823 views
jQuery.live() not working inside of a plugin
I am writing a plugin and need to live bind a click. The plugin works fine when I do a normal click bind, but not a live bind.
I've boiled the plugin down to the basics:
(function($) {
...