1
vote
1answer
51 views
.NET 4 makes for better unit testing/mocking due to the ability to monkey patch?
Consider this about the up-coming Iron Python implementation.
In theory it would allow monkey patching right? Good or bad, it matters not. Given someone else's non-testable code (at least easily) the …
0
votes
5answers
36 views
jQuery: apply plugin dynamically
hi,
i'm having this markup:
<div plug=tButton></div>
and wrote a little plugin which makes a button ouf of the div like this:
var cmd = $("[plug]");
cmd.tButton();
my question: when …
0
votes
2answers
25 views
ASP Menu driving me insane
Hi there,
I am trying to create a menu using ASP (I have never used ASP before, im a PHP man) using values stored in a database.
basically the html layout i want is as such:
<ul>
<li>
…
0
votes
1answer
12 views
How do you instantiate .NET hosted controls dynamically loaded via JavaScript?
I am trying to load a bunch of .NET hosted controls into a page dynamically using JavaScript to inject OBJECT tags into the HTML.
My problem is that the objects do not instantiate, only the static …
5
votes
9answers
169 views
[C] How to conditionally determine which functions are called at compile time?
I'm working on implementing a very, very basic component system in C, but now I am at a point where I want to 'dynamically' call some functions. The set-up is very easy: the main program is simply an …
3
votes
9answers
203 views
Dynamically creating functions in c
hi,
how can i dynamically create a function in c?
I try to summarize my C problem as follows:
i have a matrix and i want to be able to use some function to generate its elements
function has no …
0
votes
1answer
37 views
jQuery. Apply selector to every field in a dynamic form
I have a form which is built dynamically using this jQuery plugin
http://code.google.com/p/jquery-dynamic-form/
When I duplicate a div, all the fields in the div are duplicated, and -as plugin …
10
votes
4answers
244 views
How do I express a void method call as the result of DynamicMetaObject.BindInvokeMember?
I'm trying to give a short example of IDynamicMetaObjectProvider for the second edition of C# in Depth, and I'm running into issues.
I want to be able to express a void call, and I'm failing. I'm …
0
votes
1answer
56 views
Generic object controller in MVC, can you improve my code ?
I am creating an application that will display a list of objects in a datagrid (list of any type of object), and allow the user to update any item. The code will know nothing about the object being …
0
votes
6answers
118 views
“Catchall” Properties in C#?
Is it possible to create a "catchall" getter property in C#?
class xyzFactory {
public static object this.*(string name){
get { return new name();}
}
}
In PHP you would write something …
0
votes
2answers
24 views
Dynamic content in Joomla Articles
I have some joomla articles. some values in that article has to be updated by data obtained through a soap call to other site. Is there any plugin available for joomla by which i can embed custom php …
0
votes
2answers
85 views
C# Type Casting at Run-Time Using Reflection
Judging by the title of this question, what I want to do may not be possible so I will describe what I'm doing and you can feel free to let me know what I'm doing wrong and what would be a better way …
0
votes
1answer
40 views
Django Dynamic Forms
I am using James Bennetts code to create a dynamic form. I have everything working but want to save the data to a database. Has anyone got any code which does this or could show me what the best way …
1
vote
2answers
68 views
dynamic allocation/deallocation of 2D & 3D arrays
I know about algorithms to allocate/deallocate a 2D array dynamically, however I'm not too sure about the same for 3D arrays.
Using this knowledge and a bit of symmetry, I came up with the following …
0
votes
2answers
53 views
Build a form dynamically with Ajax, jQuery
I'm building a very small web ERP application with PHP / mySQL / CodeIgniter / jQuery
The Bill/Invoice is built with
current date
client data
etc
Now, I must add products to that new invoice that …
