Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
73 views

How to add an immediate byte to a long register with AT&T syntax on x86?

From what I understand reading the intel manuals, it should be possible to write an instruction like "add $0x7f, %ebx" and it should be encoded as 83 /0 ib for a total of three bytes. However, when I ...
3
votes
3answers
454 views

Android Immediate Auto Complete

Greetings! The android auto complete only starts after two letters, how can I make it so the list appears when the field is just selected? Thanks
2
votes
3answers
77 views

How to force a view to redraw immediately before the next line of code is executed

I have a LinearLayout that I would like to change the background color of when one of its child views (an ImageButton) is clicked. I am able to do this, but not immediately - the change doesn't occur ...
2
votes
3answers
632 views

JSF 2.0: cookies are not persisted immediately after AJAX call, HTTP request required

Ajax call performed in order to remove item from shopping cart - removeOrder() method is called UI removeOrder() call(JSF&Primefaces): <p:commandButton value="clean" ...
1
vote
1answer
117 views

JSF 2.0 values not being submitted

I’m struggling to get my bean to update with the new page values. I have two submit buttons on my page and I toggle which one displays based on a Boolean value for what mode my page is in. When my ...
1
vote
1answer
392 views

Use javascript to count immediate child elements of an element

I can get the count of all descendants of an element, but I can't seem to target just the immediate children. Here's what I have at the moment. var sectionCount = ...
1
vote
2answers
310 views

How do I immediately load another page in JSP/Spring?

I'm not very experienced in JSP. I have an application, which uses the Spring framework, that does a search. I show these results in a JSP page. When the search returns just one item, I want to ...
1
vote
3answers
144 views

Question about “Immediate Data” in Assembly

In assembly, when they say "immediate data" is that signed or unsigned?? I'm writing a Gameboy emulator and am using the opcodes here: http://www.pastraiser.com/cpu/gameboy/gameboy_opcodes.html ...
1
vote
4answers
2k views

jsf immediate=“true” question regarding binding to session bean

I have a listing page that goes to an add page. The add page has a name textbox whose value is bound to a session scoped bean. The listing page has an add button that goes via an action method to the ...
0
votes
1answer
39 views

Using BLOB type in dynamic SQL in Oracle

Iam trying to create a string for using in execute_immediate statement for inserting into a table. One of the columns used is a BLOB type. Iam using the '||' operator to append columns and build the ...
0
votes
0answers
61 views

valueChangeListener behaviour when autoSubmit=“true” immediate=“true”

I am using Trinidad. For radio buttons and drop down I am using valueChangeListener with autoSubmit="true" to update a part of the page. But it displays the validations if any, so I used ...
0
votes
1answer
59 views

Execute Immediate with multiple SQL Statements

Here is my PL/SQL. execute immediate ' create table Alex_Test2(col1 varchar2(100)); / drop table Alex_Test2; / '; In the dynamic SQL, a table is created and then dropped immediately. The funny ...
0
votes
2answers
117 views

How do you refresh PreferenceActivity to show changes in the settings?

Based on the following code, can you tell me how to refresh the PreferenceActivity window to show changes in the settings immediately? For example: the user taps the master chime toggle checkbox to ...
0
votes
2answers
46 views

How can i get an immediate response from a long running process in j2ee?

I can't seem to find a solid answer anywhere. I THINK i found one with respect to JMS but it was confusing.
0
votes
3answers
71 views

Is there any corespondent in mysql like execute immediate in oracle?

Like execute immediate in oracle ,is there any corespondent in mysql procedure? I really want to use the prepared statement within stored mysql procedure,then it can generate a new sql in each loop! ...
0
votes
2answers
592 views

ADFfaces Ignores Immediate if the required input has partialTrigger the submiting component

I have a selectOneChoice with autoSubmit=true and immediate=true to skip validation, if the selectOneChoice is set to some value I want to remove the required attribute from an inputText, so the ...
0
votes
1answer
58 views

how to show all of my posts with thumbnail with Title on a single page in wordpress?

how to show, all of my posts thumbnail with Title on a single page in wordpress? here we need to use Only Short Code.We May use Jquery or others also but need to solve. Client Asking Immediately but ...
0
votes
0answers
69 views

Unable to end SQLite transaction

I am fairly new to SQLite. I have an application which we have recently ported to use SQLite as opposed to MySQL, I'm finding the biggest difference between the two to be transactions. I'm having a ...
0
votes
2answers
895 views

How to have a checkbox fire an ajax call when checked or unchecked in Rails3?

In my Rails3 application, I have a group of check boxes for a list of tasks. I'd like to fire off an ajax call back to the server whenever one of the check boxes are checked or unchecked. This code ...
0
votes
1answer
696 views

execute immediate create table and update table

I am creating a temp table in pl/sql using execute immediate & also inserting in the table why create table. After that I m updating the table. But i m getting error table doesn't exists as it is ...
0
votes
1answer
87 views

segmentation fault on method call

i am getting a segmentation fault while trying to call the addEdge(int, int) method. the calling code is below. Can anyone help? void addEdge(int i, int j) { if (i >= 0 && j ...
0
votes
3answers
311 views

PHP Get user input without user having to press return key

Hi I am using PHP in CLI mode (Command Line Interface) I would like to get the key the user types and immediately have it submitted to the program without the user having to press the return ...
0
votes
2answers
449 views

WPF: How to refresh a window while debugging?

I am debugging an algorithm that is being represented by a set of ViewModels. In order to debug this algorithm I would like to redraw the View while stepping through part of the algorithm. Is this ...