An Action is a response of the program on occurrence detected by the program that may be handled by the program events.

learn more… | top users | synonyms (1)

3
votes
3answers
107 views

Is it possible to get number of statements inside an action or determine if it has empty body?

Let's say we have this code : Action<int> gf = k => { }; Action<int> gfa = k => { k++; }; How I can determine that gf has no body or statements ? Is it possible to get number of ...
0
votes
4answers
266 views

Why following static function doesn't work ?

Here is my code : public static class s { public static int Dx(this int i, Action<int> act, Func<int, bool> con) { if (con(i)) act(i); return i; } } Later In my ...
0
votes
1answer
14 views

Layout disappears for certain action in cake

This was just working perfectly fine 5 minutes ago... I can't for the life of me figure out why this is happening. Basically, I start on a page, with a layout (== 'default'), no where in the ...
0
votes
1answer
49 views

Kohana Route to index action

I have a problem. I have code: Route::set('user', '(<controller>(/<id>))') ->defaults(array( 'controller' => 'user', 'id' => '\d+', )); And mydomain.com/user/1 don't ...
0
votes
1answer
232 views

ASP.NET Web API OData Action on the EDM Model Root

I'm building a Web API service using OData, and would like to expose a method as an Action in the service as follows. http://myServer/odata/myAction I'm currently mapping the OData routes as ...
0
votes
0answers
50 views

javascript action is empty?

I'm a system administrator but have to resolve the following issue with. I have a web page (HTML+javascript). Also it have a from. As far as I know in the classic HTML each form must have action tag ...
0
votes
1answer
64 views

How to publish Facebook actions that include maps using iOS SDK?

I want to publish an Open Graph fitness:runs action on Facebook and I want it to render with a map of my path. The path is defined by the path coordinates below. How do I do this? The method below ...
2
votes
1answer
268 views

ZF2 - Generating Url from route

I can't figure out to generate Url from everywhere i want to, in zend 2 I get action and controller so i try this: $this->url('myControllerName', array('action' => 'myActionName')); But this ...
0
votes
0answers
38 views

window.location after previous commands in javascript

I have a function: function OnButton1() { document.Form1.action = "http://apple.com" // First target document.Form1.target = "iframe1"; // Open in a iframe document.Form1.submit(); ...
6
votes
3answers
115 views

Combining Action and Func in one parameter

I have many methods that require some logging with the same pattern. Some methods need to return some value, some don't. I have created a method with Action parameter to avoid copypasting all of the ...
1
vote
1answer
98 views

Google Map API for flash AS3

Please tell me if Google Maps API is available for Flash. If it's already deprecated for Flash then which one is the best third-party or other alternative? My goal is to make an Android Maps app ...
1
vote
0answers
65 views

Specifying oCPM Bid Geared for Actions (Offsite Conversions)

My question is regarding how to combine a campaign set for Optimized-CPM bidding and the conversion spec for an off-site pixel conversion to delivery impressions focused on generating more off-site ...
1
vote
1answer
75 views

HTML FORM - have form action=“” occur before onsubmit=“”

I've got a pop-up form, onsubmit it closes itself and also refreshes the parent screen. It uses action="x.php" to transfer session data. My problem is that in the form onsubmit="js()" is occuring ...
0
votes
1answer
115 views

Ember.js: action with explicit target fails

I guess I'm missing something really basic, but the following fails with The action 'login' did not exist on App.AppController. Template: <h2>Click the button and watch the console</h2> ...
1
vote
1answer
21 views

Why can't I create an Action in Xcode?

When I follow the instructions at How do I add an action or outlet to a class in Xcode 4.3.1?, or Apple's First iOS App tutorial, there's no option for Action. There is only options for Outlet and ...
5
votes
2answers
90 views

C# Action in Foreach

fMethod is an Action<Fruit>. But when fMethod is called, the parameter is always the last entry of _Fruits. How to solve this? foreach(Fruit f in _Fruits) { field.Add(new ...
2
votes
1answer
191 views

broadcasting of BOOT_COMPLETED intent action does not work properly

I have a receiver class listening on several actions but it can not catch the android.intent.action.BOOT_COMPLETED action. What I am doing wrong? here is my manifest file: <uses-sdk ...
-3
votes
2answers
81 views

Passing value in a url in php [closed]

I know that one can pass a value in a url when the submit button is clicked like: action= assignastemp.php?value1=a and then retrieve it in assignastemp file using $query=$_GET['value1']; so that ...
-1
votes
1answer
68 views

redirect to custom php file after custom contact form is submitted in Magento

I made a CMS page to include a form I created but want the form action to send to /template/contacts/report.phtml Currently I have this in my form but I know its not right. <form ...
1
vote
0answers
32 views

action handling thru different frames

I have a design problem that seems somewhat basic, but I am struggling to find an adequate solution as I don't have much experience in OO design. I have a system that has got a lot of frames in which ...
0
votes
2answers
70 views

Struts 2 - Date instance become String

when I submit the form, input error is occur. JourneyDate is instance of 'Date'. But ,here it become String which is not accepted by the setter and getter. <s:hidden name="JourneyDate" ...
0
votes
0answers
61 views

Reload h:datatable on language change

I have a ViewScoped EJB: @ManagedBean(name = "myBean") @ViewScoped public class MyBean { private List<MyData> myDataList; the getter for the list only gets the value of the ArrayList public ...
0
votes
1answer
23 views

How to add free-form tags to a CKAN package?

I'm trying to figure out how to add free-form (vocabulary-free) tags to a package programmatically, and I'm finding the documentation a little confusing. from ...
1
vote
1answer
111 views

How do I call a method in Scala through javascript & ajax?

I do not know if my title was perhaps a little misleading. But here's what I really need help with. I'm making a get on this url: $.get("/fb/login/"+fbEmail, function(data){ console.log(data); ...
0
votes
1answer
56 views

CakePHP 2.0 twitter-like follow button

I can't help myself and it's currently annoying, and yes, I used google a lot. What I need: A twitterlike follow button with the action to follow user. What I already did: Database users table: ...
0
votes
0answers
59 views

KENDO UI GridAction Usage

I have telerik grid it has ajax request as follows. .DataBinding(dataBinding => { dataBinding.Ajax() .Select("FilterDetailsForCbu", "Actual", new { buyerId = ...
0
votes
2answers
66 views

Differences between action and methods in Grails controllers

As far as I know, if I want to create an action in a controller then I can do it by: class My Controller { def myAction = { println "in my action " } } or I can create it by: class ...
1
vote
1answer
75 views

How to do an action when unchecking a checkbox?

Well basically I have 3 check boxes. Each of them has a boolean which gets turned to true when a button is clicked and the box is checked. However is it possible to do an action, when unchecking a ...
0
votes
1answer
120 views

Control a button inside a MovieClip in the Main timeline

I've been searching for a solution to my problem for hours now but I can't find one. My problem is that I have some buttons inside a MovieClip and I want to control them from the Main timeline. But ...
0
votes
1answer
43 views

Issues With hitTestObject in ActionScript 3

Im just trying to loop through the two arrays the bullet and enemies array then i perform the hitTestObject on both but it doesnt seem to work until the enemy gets really close to the player or ...
1
vote
1answer
43 views

Is there a good way to make a filter not apply to h:commandLink click?

I have a problem where an action in my h:commandLink is not firing. I reviewed BalusC's very useful post on what the cause might be, and I was able to trace it to number 11: Be sure that no ...
1
vote
0answers
66 views

How to run two actions at the same time cocos2d

So I know CCSpawn and I have been using it to run multiple actions at the same time, but now I am encounter a problem. I made a game character that's only last for a short period of time and then ...
0
votes
5answers
66 views

UIButton doing different action ios

I have two navigation buttons(left and right) and two category buttons(for ex. loveCategory and otherCategory). When I select loveCategory I want my navigation buttons to display(in my case Images) ...
0
votes
1answer
85 views

How to disable action column item for a single row?

Consider this JSON sample : [{id:1,editable:true},{id:2,editable:false}] These records are about to be loaded in a store, then displayed inside a grid panel. This grid has an action column item for ...
0
votes
1answer
37 views

error with form action

I have the following C# code: AddCommentForm = string.Format("<form name=\"AddComment\" method=\"post\" runat=\"server\" id=\"add_comment_form\"><p> TITLE: <input type =\"text\" ...
1
vote
0answers
49 views

Variable expires_in time for Rails Action Caching

I want to use action caching in my rails app. Right now I set the timeout for the cache to 1 minute but I would like to have it variable. Here is the code of my rails controller: ...
0
votes
0answers
36 views

open graph flexible sentence caching

I am modifying an app's open graph and have changed an action to adopt flexible sentences. The sentence structure is like "{User} {action} {object name} {additional text} on {my app}." I am ...
1
vote
2answers
43 views

Create form action as variable

I have t following ASPX source : <form name="AddComment" action="ViewArticle.aspx?ArticleID=<%=ArticleID %>" method="post" runat="server"> The problem is that when I click submit I ...
1
vote
2answers
59 views

Action or Interface to populate class data from a collection

I have a vertex class which contains x,y,z coordinates. This class has multiple instances which are contained in the following dictionary: // Vertex Collection var Vertexs = new Dictionary<int, ...
0
votes
0answers
34 views

Detect an iframe click and forward to url

I have an iframe and when someone clicks it I want it to go to my desired url location. Please give me a full code and explain how to use it. Now the iframe is not a page on my domain its a youtube ...
0
votes
1answer
73 views

Detect Click On Iframe Then Do An Action

I want to add a iframe to my website that has a button in it and when someone clicks on it, it does an action like maybe forward to another page or echo a message. I don't care about the code whether ...
0
votes
1answer
41 views

How to define a route and map it to an action in the module.config.php of a Zend Framework 2 application module?

My application has a module Catalog that should display three views: List of cities, when the URI is /catalog/ List of sports in the %city%, when the URI is /catalog/%city% List of courses of the ...
1
vote
3answers
53 views

Android. I want to add action to add action to main.xml button

I want to add action to add action to main.xml button. here is my code: <menu xmlns:android="http://schemas.android.com/apk/res/android" > <item android:id="@+id/SendMes" ...
0
votes
0answers
71 views

WordPress: template_redirect doesn't work if <?php wp_footer(); ?> is in theme

In the moment I'm facing some strange behaviour when I try including javascript via wp_enqueue_script. Ok ... Since ages I include javascript like this: function my_scripts_init(){ ...
0
votes
1answer
115 views

how to return Action<bool> inside method?

I have the following code in my class: private static void SetUserMeta(string pUserToken, string pMetaKey, string pMetaValue, Action<bool> callback) { BuddyClient client = CreateBuddy(); ...
0
votes
1answer
41 views

How to add a upgrade screen using Actionscript 3 [closed]

Well I have a shooting game it works properlly but I want to add a upgrade screen to get a better weapon. Can anyone please give a direction to go maybe even write some code for me please.? So after ...
1
vote
2answers
986 views

Laravel 4 Form::open set action

I'm currently trying out Laravel 4 and I have created a resource controller. In the 'edit' function I'm building a form, which should post to the 'update' function. To create the form open tag I use ...
0
votes
0answers
26 views

Action Link endpoint not fired

I have some actions on my app (like Wish and Buy) (i cannot be more specific though i want to). They are linked to action links and they appear on FB properly. I have the action link Buy setip for the ...
1
vote
1answer
60 views

Modify “Add Post” link in Wordpress custom post type

I'm sure I need an action hook, but I can't find one. I need to add a query to the URL used by the "add contact" link on my custom post type: ...
3
votes
1answer
60 views

Delphi XE2: iterate actions in a TAcionManager object

I was wondering if there is a way to iterate through TActions in a TActionManager without the classic for i:= 0 to... but using a iterator in a code like for (action in actionManager.actions) do ...

1 2 3 4 5 38