Tagged Questions

10
votes
6answers
11k 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 …
8
votes
3answers
515 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() conditi …
7
votes
3answers
8k views

MySQL: Bind to more than one IP address?

Is there a secret way to bind MySQL to more than one IP address? As far as I can see the bind-address parameter in the my.cnf does not support more than one IP and you can't have …
6
votes
3answers
321 views

Any python libs for parsing Bind config files?

Any python libs for parsing Bind config files? Basically something that will aid in adding/removing zones and records. This needs to work even if someone modifies the config by ha …
5
votes
3answers
515 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 …
5
votes
6answers
725 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 acc …
3
votes
3answers
244 views

How to manage a DNS server remotely?

I whant to make a web interface on a server that will manage a few dns servers on another servers. How can i remotely manage a bind dns server programmaticly ? I would like to a …
2
votes
4answers
104 views

What is the correct way to bind events in jQuery?

For example in php I have a list of clients: foreach($clients as $client) echo '<li id="client_'.$client->id.'">' . $client->name . '</li>'; What is the co …
2
votes
1answer
26 views

How does the bind operator work in JavaFX?

How is the bind operator implemented in JavaFX? What happens behind the scenes? Does every variable in JavaFX implement some kind of observer API so that listeners can attach to it …
2
votes
2answers
77 views

PDO binding values for MySQL IN statement

Hi, I have an issue with PDO that I'd really like to get an answer for after being plagued by it for quite some time. Take this example: I am binding an array of ID's to a PDO s …
2
votes
1answer
77 views

Can I get usable data in a jQuery live handler for a custom event?

jQuery now allows you to use live to handle custom events, something I've used in my latest project and found very handy. I have come up against a limitation/bug, however, that I'm …
2
votes
2answers
348 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 v …
2
votes
1answer
503 views

gtk.Builder, container subclass and binding child widgets

I'm trying to use custom container widgets in gtk.Builder definition files. As far as instantiating those widgets, it works great: #!/usr/bin/env python import sys import gtk …
2
votes
5answers
1k views

Lazy binding functions to multiple events with jQuery

Here's the scenario: I have a set of buttons that I want to bind to corresponding functions when clicked. The ids of these buttons are the same as the names of their corresponding …
2
votes
4answers
2k views

Dynamically bind data to dropdownlist in asp.net mvc

Hi, How to dynamically bind data to <%Html.Dropdownlist.... in asp.net MVC? Regards, Ambika

1 2 3 4 5 7 next
15 30 50 per page