Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
3answers
1k views

How to share web content between eclipse projects

While the J2EE module reference feature allows your to create common Java library projects, I can't find a neat way to do this for web content. I have common JSPs, CSS files, JavaScript libraries ...
1
vote
1answer
124 views

Dynamically Adding child controls to a silverlight textbox

Please forgive this stupid question. (I'm originally an ASP.NET programmer.) I'm trying to add a telerik context menu to a textbox control in the code behind. Adding it in the xaml is very easy ...
1
vote
1answer
106 views

Different behaviours between .NET 4.0 beta 2 and last release of .NET 4.0 !

I've identified a difference of DLR between .NET 4.0 Beta 2 and the last release of .NET 4.0. In .NET 4.0 Beta 2, this code perfectly works at runtime : var dateTimeList = new ...
1
vote
2answers
4k views

jQuery plugin show image

I generate a HTML page with the links to images from a directory. First I was thinking to load/display all the images and then to hide them using jQuery .hide() When a user will click to a image ...
0
votes
2answers
110 views

Jquery dynamic plus/minus symbol toggle

I'm using a jquery toggle script. I would really like a plus (+) sign to show in the heading when the toggle hasn't been opened, and a minus (-) symbol for when it has been. The reason I'm not just ...
0
votes
4answers
455 views

Dynamically set Source of the ImageView

I'm trying to set country flags in a ImageView according to country name. I follows the convention that country flag image is always stored at drawable/flag_country_name for eg; ...
0
votes
0answers
399 views

object not found error with dynamic web forms with (jquery) javascript script

In a normal aspx page I've set up a jquery tab system. When a particular tab shows up I wire up an ajax call to get another html page with the following content. It is simply a form with some ...
0
votes
2answers
155 views

Dynamicly added Controls [e.g Button] : How to add events and Access

At my program i dynamicly add Buttons to my form { ... Button bt = new Button(); bt.Text = "bla bla"; bt.MouseClick += new MouseEventHandler(bt_MouseClick); myPanel.Controls.Add(bt); ...