Top "Dynamic" questions

Dynamic is a widely used term that, in general, describes a decision made by the program at run-time rather than at compile time.

How does ViewBag in ASP.NET MVC work behind the scenes?

I am reading a book on ASP.NET MVC and I'm wondering how the following example works: Example #1 Controller public …

c# asp.net-mvc dynamic viewbag
Casting Dynamic and var to Object in C#

Consider these functions: static void Take(object o) { Console.WriteLine("Received an object"); } static void Take(int i) { Console.WriteLine("…

c# dynamic
Using the parent's DataContext (WPF - Dynamic Menu Command Binding)

I looked over this web and google and the solutions didn't work for me. I have a command on the …

c# wpf dynamic menu commandbinding
How to debug dynamically loaded JavaScript (with jQuery) in the browser's debugger itself?

A dynamically-added script is not showing up in the browser's debugger's scripts section. Explanation: I need to use and have …

javascript debugging dynamic loaded
Angular Material Table Dynamic Columns without model

I need to use angular material table without model, because I don't know what will come from service. So I …

dynamic interface angular-material datasource
How to create line breaks between dynamically generated labels in a placeholder?

This is the code below in code behind file's Page_Load event: LinkButton linkButton = new LinkButton(); linkButton.ID = "LinkButtonDynamicInPlaceHolder1Id" + …

asp.net dynamic button line-breaks placeholder
using variables within a jquery selector

I'm trying to build a dynamic jquery selector with the following code: var section_id = "{segment_3}"; var num_children = $('#…

javascript jquery variables dynamic selector
How do you dynamically compile and load external java classes?

(This question is similar to many questions I have seen but most are not specific enough for what I am …

java dynamic compilation load external
dynamically declare/create lists in python

I am a beginner in python and met with a requirement to declare/create some lists dynamically for in python …

python list dynamic creation variable-declaration
Using .each on dynamic objects in jQuery?

There are lots of questions that seem to be asking this, but in the end all they want is to …

javascript jquery dynamic dynamically-generated each