2
votes
5answers
60 views
is it good to use Wait cursor in websites?
Hi all.
Just wanted to ask - is it good to use Wait cursor in websites? on heavy loading pages..
we dont generally see it used with websites...(please share some if u have seen a …
0
votes
2answers
87 views
ASP.NET Telerik TreeView node cursor
How do we set the hand cursor for a plain text node in a Telerik RadTreeView? This is an ASP.NET web app. We are just looking for a quick answer. Didn't see this posted here or on …
0
votes
3answers
30 views
Detecting if mouse position is within a set of position rules?
I have some JavaScript objects such as this (it's psuedo so I know if syntax is wrong):
[{ "divid":"1","x1":"35","y1":"100","height":"150","width":"150" },
{ "divid":"2","x1":"45" …
1
vote
2answers
51 views
(Probably) Simple SQL Server cursor question
I need to call two stored procedures in sequence via ODBC in PHP:
#run stored procedure 1
$query = "Shipped_Not_Shipped_Rep ".$_GET['rep_id'];
$result = odbc_exec($dbh, $query);
o …
2
votes
5answers
90 views
Getting the browser cursor from “wait” to “auto” without the user moving the mouse
I use this jQuery code to set the mouse pointer to its busy state (hourglass) during an Ajax call...
$('body').css('cursor', 'wait');
and this corresponding code to set it back …
0
votes
1answer
36 views
Apply Custom ListView For a CursorAdapter
I am building a custom listview used to list contacts from the contact cursor into a list with two text view for the phone number and name of the contact as well as a place for th …
1
vote
3answers
51 views
Looping Over Result Sets in MySQL (Resolved: Using Cursors)
I am trying to write a stored procedure in MySQL which will perform a somewhat simple select query, and then loop over the results in order to decide whether to perform additional …
1
vote
2answers
36 views
onCreateContextMenu is invoked with a null value for ContextMenuInfo
I'm attempting to use a ContextMenu.
I've successfully done this for a simple ListActivity using SimpleCursorAdapter.
Moving on I want to replace SimpleCursorAdapter with CursorAda …
0
votes
1answer
24 views
jquery resizable cursor help
I have setup a div that is resizable:
$("mydiv").resizable();
Now when you go to resize it to the right the cursor goes off the the actual resize part. So if the cursor hits the …
0
votes
1answer
17 views
jquery resizable cursor is not stying with margin auto
I have a problem with the jquery resizable plugin. I have troubleshot the issue and have come up with this. If I create a div and make it resizable and make it also have an alsoRes …
0
votes
0answers
26 views
Cause of pointer shape change over dropdown fields in IE6?
I have a web page with a form with several dropdown fields. For certain users, using IE6, there is a strange bug where mousing over the dropdown fields will cause the mouse cursor …
1
vote
2answers
18 views
Reset or Update Row Position Integer in Database Table
Hello,
I am working on a stored procedure in SQL Server 2008 for resetting an integer column in a database table. This integer column stores or persists the display order of the …
0
votes
2answers
87 views
MySQL Stored Procedures : Use a variable as the database name in a cursor declaration
I need to use a variable to indicate what database to query in the declaration of a cursor. Here is a short snippet of the code :
CREATE PROCEDURE `update_cdrs_lnp_data`(IN dbNam …
0
votes
3answers
42 views
Help Cursor is not working in the firefox browser…
<html>
<head>
<title>Question</title>
<script type="text/javascript" >
function MouseOverHand(ID)
{
var Cursor='hand';
var ID=ID;
if (!document.all){ …
0
votes
3answers
85 views
SQL Update row by row
My SQL table has 2 fields that impact my problem: "Priority" as real, and Start_Date as datetime. As the user adds items to the table, (s)he specifies the Priority for a given Star …
