Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (1)

52
votes
8answers
35k views

Uses of Action delegate in C#

I was working with the Action Delegates in C# in the hope of learning more about them and thinking where they might be useful. Has anybody used the Action Delegate, and if so why? or could you give ...
28
votes
3answers
19k views

Action Image MVC3 Razor

What is the best way to replace links with images using Razor in MVC3. I simply doing this at the moment: <a href="@Url.Action("Edit", new { id=MyId })"><img ...
28
votes
4answers
3k views

Modelling a permissions system

How would you model a system that handles permissions for carrying out certain actions inside an application?
17
votes
3answers
3k views

Differences between action and actionListener

What is the difference between action and actionListener. When sould I use action and/or actionListener? My question is related JSF 2.0.
15
votes
10answers
4k views

How do you use Func<> and Action<> when designing applications?

All the examples I can find about Func<> and Action<> are simple as in the one below where you see how they technically work but I would like to see them used in examples where they solve ...
13
votes
4answers
428 views

RESTful design, how to name pages outside CRUD et al?

I'm working on a site that has quite a few pages that fall outside my limited understanding of RESTful design, which is essentially: Create, Read, Update, Delete, Show, List Here's the question: ...
12
votes
3answers
6k views

Eclipse RCP: Actions VS Commands

What are differences between Actions and Commands in the context of Eclipse RCP? I know that they both contribute to the menu entries, but which one is better? And why? Of all the online resources ...
11
votes
3answers
255 views

Why using Action in this code?

Hi I see following code: void UpdateMessage (string message) { Action action = () => txtMessage.Text = message; this.Invoke (action); } Why using Action and then invoke action here? Why ...
11
votes
9answers
577 views

Please Explain .NET Delegates

So I read MSDN and Stack Overflow. I understand what the Action Delegate does in general but it is not clicking no matter how many examples I do. In general, the same goes for the idea of delegates. ...
11
votes
2answers
27k views

jQuery - change form action based on selection?

I'm trying to change the form action based on the selected value from a dropdown menu... Basically, the html looks like this: <form class="search-form" id="search-form" method="post" ...
10
votes
3answers
2k views

ASP.NET MVC OutputCache doesn't work for root URI

I'm learning ASP.NET MVC and bugged by one issue. In the HomeController, the Index action has OutputCache attribute, but it seems doesn't work. [HandleError] public class HomeController : Controller ...
8
votes
3answers
131 views

Best Practice using reusable Actions on GUI Components

I tried differend things on how to make Actions resuable in my Swing applications. I am not a friend on heavy-weight, 1000+ line classes (with lots of inner/anon classes) and try to split my code up ...
7
votes
2answers
85 views

Syncronizing actions in Silverlight

I have a Silverlight app that uses actions to get data from the model (which again gets the data from WCF services). I need to somehow sync two ActionCallbacks, or wait for them, and then execute ...
7
votes
2answers
118 views

Prevent HTML form action from being changed

I have a form on my page where users enter their credit card data. Is it possible in HTML to mark the form's action being constant to prevent malicious JavaScript from changing the form's action ...
7
votes
3answers
106 views

Using Actions with DocumentListener

I'm developing an application where I want something to be triggered both by the user updating the contents of a JTextArea, or manually via pressing a JButton. I have done the first part using a ...
7
votes
1answer
186 views

Java Swing: Using ActionMap

I've seen a post earlier that recommends favoring Actions over listeners. I am not so familiar with the ActionMap. What are the disadvantages of the each approach? I like to make inner classes that ...
7
votes
1answer
2k views

Why is my searchable activity's Intent.getAction() null?

I've followed the SearchManager documentation yet am still having trouble making one of my app's activities searchable. From my activity, the Search dialog appears, I enter a query, hit search, my ...
7
votes
4answers
1k views

Moq a function with 5+ parameters and access invocation arguments

I have a function I want to Moq. The problem is that it takes 5 parameters. The framework only contains Action<T1,T2,T3,T4> and Moq's generic CallBack() only overloads Action and the four ...
7
votes
5answers
2k views

How can I disable logging in Ruby on Rails on a per-action basis?

I have a Rails application which has an action which is invoked frequently enough to be inconvenient when I am developing, as it results in a lot of extra log output I don't care about. How can I get ...
7
votes
5answers
4k views

.NET MVC Call method on different controller

Can anybody tell me how to call a method on a different controller from within an action method? I don't want to redirect. I want to call a method on a different controller that returns a string and ...
7
votes
2answers
2k views

action delegate with zero parameters

I see this line in many online examples of using the Action delegate: public event Action MyEvent; But when I try it in my own code, I get this error Using the generic type 'System.Action' ...
7
votes
1answer
427 views

What is the difference between form action=“” and form action=“.”?

Is there any difference beween: <form action=""> ... and: <form action="."> ?
6
votes
2answers
221 views

How can I dynamically pass a condition and a method to a recursive method

I want to make a method like this, public dynamic Traverse(dynamic entity, conditions, method) { foreach (var propInfo in GetTraversableProperties(entity)) { if (condition) ...
6
votes
3answers
3k views

target-action uicontrolevents

I must be missing something obvious here but ... UIControl has a method - (void)addTarget:(id)target action:(SEL)action forControlEvents: (UIControlEvents)controlEvents which lets you add an ...
6
votes
4answers
11k views

Using EL 2.2 with Tomcat 6.0.24

With JSF 2 you should be able to do this: <h:commandButton action="#{myBean.myAction(myParameter)}"/> which would then call the action method, passing in the parameter (assume it's an ...
5
votes
4answers
96 views

C# Action<> with Func<> parameter

I have the following method that I can't figure out correct syntax to call: public T GetAndProcessDependants<C>(Func<object> aquire, Action<IEnumerable<C>, Func<C, ...
5
votes
1answer
194 views

How to change the sequences of child actions in MVC

I want to generate HTML head section in a child action; while the page has many other child actions. The html head section is depended on the other actions to determine which js/css files should be ...
5
votes
1answer
75 views

Keep a log of user events in rails

I am currently trying to implement a log for the administration section of my rails application. This will allow an admin to see what actions a user has performed and when. E.g 'User added a new ...
5
votes
1answer
101 views

VB.Net why is this not a bug?

I encounter what I believe to be a bug and I was just wondering if this is already known as a issue or if this is not a issue and why. The problem related to Read Only Properties on a Type when ...
5
votes
4answers
164 views

Any way to exit outer function from within inner function?

Within PHP, if I have one function that calls another function; is there any way to get the called function to exit out of the caller function without killing the entire script? For instance, let's ...
5
votes
2answers
2k views

android pick images from gallery

I want to create a picture chooser from gallery. I use code intent = new Intent(Intent.ACTION_PICK, android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI); startActivityForResult(intent, ...
5
votes
1answer
1k views

Silverlight, Caliburn, Actions and DataGrids

Anyone know of good code examples of the Caliburn or Caliburn Micro framework example that illustrate routing Actions with DataGrid items?
5
votes
2answers
1k views

C# Action and Func parameter overloads

I need a method that takes an Action (or a Func), but the Action has a mixed number of parameters. What is the most straight forward and compact way to implement these overloads: public void ...
5
votes
3answers
285 views

How do I manually invoke an Action in swing?

For the life of me I cannot seem to find details on Java Swing Actions :'( When I came across them I immediately realised their usefulness. So far it's all been easy to work with. Now I'm stuck with ...
5
votes
2answers
354 views

Search Route in ASP.NET MVC

I have a simple search form in my master page and a serach controller and view. I'm trying to get the following route for the string search term "myterm" (for example): root/search/myterm The form in ...
5
votes
2answers
725 views

Rails, routing many named routes to one action

Is there a simpler way of writing this: map.old_site_cusom_packages '/customs_packages_options.html', :controller => :public, :action => :redirect_to_home map.old_corporate ...
5
votes
4answers
518 views

Managing Swing Actions with a Registry

Typically when I'm creating a Swing (or any UI) application, I have various Actions that appear on menu items and buttons. I usually create an action registry and store the actions in there and then ...
4
votes
2answers
36 views

Can we redirect a page to new window with submit button

Hi i have a form on my page, in asp.net, my form is hidden, it open in lightbox on click of a link on the page. lightbox has a div with HTML form POST method and action to some URL, on click of ...
4
votes
3answers
119 views

Action delay extension method not working

I'm trying to create a handy extension method to Action to basically run that action after a delay: So far my extension looks like this public static void DelayAction(this Action DelayedAction, ...
4
votes
1answer
388 views

error in adding preview actions to an aggregation in open graph app

I am following the tutorial creating my first open graph app. everything works up until when i tried to add "Preview Actions" in an aggregation and created sample data for auth dialog. I am getting an ...
4
votes
3answers
107 views

How can I pass a void returning extension method to dynamic returning extension method?

I want to pass an extension method that returns void as a parameter to another extension method that returns dynamic. public static void AddTo(this Object entity, Object parent) { ...
4
votes
2answers
409 views

How to create a something like Zend preDispatch method in Symfony2

I'm making a project using a Symfony 2 and I need to have method like preDispatch in Zend which will be called before any action in the Controller. I'm very new in Symfony and a little bit surfing the ...
4
votes
2answers
82 views

Problem with Action delegate that takes List<T>[]

I have an Action delegate declared like this. private readonly Action<List<PSDPoint>[]> _psdAction; _psdAction = AddPSDData; PSDPoint is a very simple class. public class PSDPoint { ...
4
votes
1answer
273 views

Using the same action on multiple sprites?

I want to create an action once, then add it to multiple sprites. For example, I have a 'monster' that gets a bunch of legs added to its body. Each of these legs are children of the body, and I want ...
4
votes
2answers
308 views

How can I overload ASP.NET MVC Actions based on the accepted HTTP verbs?

Wanted to use the same URL for a GET/PUT/DELETE/POST for a REST based API, but when the only thing different about the Actions is which HTTP verbs it accepts, it considers them to be duplicate! "Type ...
4
votes
4answers
398 views

Declare delegate manually, use Func<T> or Action<T>?

today I was thinking about declaring this: private delegate double ChangeListAction(string param1, int number); but why not use this: private Func<string, int, double> ChangeListAction; ...
4
votes
6answers
2k views

How can I change the behavior of Android's airplane mode so that it will not turn off the cellular radio?

I have been trying to create a simple application that will let the user customize the behavior of airplane mode in Android. The motivation for this is from a relative who has a Samsung Fascinate, ...
4
votes
3answers
91 views

Do I need a view for every action?

I have been developing in ASP.NET MVC for a short while. Up to this point, the controller actions have been fairly simple. Each action returns its corresponding view. However, I recently created an ...
4
votes
1answer
511 views

Visual Studio: How to override the default “Build Action” for certain extension types per project or solution?

I'm serving my asp.net mvc views from many assemblies and copying views to the main application on post-build event. This works, however, I realized, that when I change something in view and just hit ...
4
votes
3answers
673 views

How to create a new Thread to execute an Action<T>

The title pretty much says it. I have some methods that need to run on a new thread and since all the code before creating the thread is pretty much the same, I thought I would create a function that ...

1 2 3 4 5 21