PDF Time Sheet - Only Subtract 30 Minutes If The Work Day Is Greater Than 4 Hours?

Nov 5, 2009

I have created a PDF time sheet for work that automatically calculates the hours worked utilizing the below script:

topmostSubform.Page1.worked[0]::calculate - (FormCalc, client)
var amTime = 0
if (HasValue(amOut) and HasValue(amIn)) then
amTime = Time2Num(amOut.formattedValue, "h:MM A") - Time2Num(amIn.formattedValue, "h:MM A")- 1800000
endif
// compute total time in hours from the millisecond value
$.rawValue = Sum(amTime)/3600000

I discovered a problem; if the employee works less than 8 hours they may not take a lunch. I have it set to automatically subtract 30 minutes for lunch. How do I write it to only subtract 30 minutes if the work day is greater than 4 hours? I am new to java script and have NEVER programmed anything previously. I am working in Adobe LiveCycle Designer and what I have done so far was gleaned by reading the internet. So please, if you reply break it down Barney style.

View 2 Replies


ADVERTISEMENT

Converting Minutes To Hours And Minutes ?

Nov 26, 2010

I have a script (provided by someone else). The problem is the result is not the desired one. Example: I'm getting my hours and minutes in a decimal format. 8:33 is showing as 8.55

I have 3 fields.

I'm no expert and don't understand JavaScript at all.

Here is the script:

View 6 Replies View Related

Validate Values Greater Than 8 Hours?

Mar 16, 2011

I have the below form where the user enters the hours and minutes worked on a task. I want to be sure that the total for the form is at least 8 hours. How can I do that?

View 3 Replies View Related

JQuery :: Datepicker With Hours And Minutes

Feb 3, 2009

I'm looking for a datepicker with hours and minutes.

Like: [url]

It needs to manage a venue's event.

View 4 Replies View Related

JQuery :: Sget The Hours, Minutes And Seconds Between 2 Timestamps?

Aug 27, 2011

I have to get the hours, minutes and seconds between 2 timestamps. It´s for a reminder, so I get in a click the actual time. The time until the job is finish is 30 minutes.

var d = new Date();
var stunden_aktuell = d.getHours();
var minuten_aktuell = d.getMinutes();
var sekunden_aktuell = d.getSeconds();

[Code].....

Do you know how to get the hours, minutes and secons between this stamps?

View 1 Replies View Related

Countdown Timer (days - Hours - Minutes - Seconds) Between Dates

May 8, 2010

I have developed a application in jsp. I need to achieve a count down timer(days,hours,minutes,seconds) between from date to todate, considering below cases. All below are assumed

(1) I have 4 product, for each product i have different end date stored in mysql in DB.

(2) I need to calculate time time remaining for the end date for each product, for eg;

Product 1 end date : 10/05/2010 (i need to show the time remaining for the end of 10/05/2010 from current time and date). Like wise i need to show for different products.

View 4 Replies View Related

Add 4 Hours To Current System Time?

Oct 26, 2011

I want to validate the time field so that the user can enter the time more than 3 hours from the current time.

View 2 Replies View Related

Calculate The Time In Hour Elapsed Between Two Hours?

May 3, 2010

Is any way to calculate the time in hour elapsed between two hours?

View 1 Replies View Related

Function That Looks At The Time And Only Displays A Chat Button During Available Hours?

May 14, 2010

JavaScript function that looks at the time and only displays a chat button during available hours.Right now I have it set to only show the button from 8 am to 6pm. I really would like to change it so the button only shows from 8am to 5:30pm but I dont know how to do half hours.Here is what I have right now:

Code:
function validate_time()
{

[code].....

View 1 Replies View Related

Edit Functions Time To Be Hours:minuts:seconds?

Jul 31, 2010

to add minuts and seconds so can change the background ex. 07:45:00 instead of just hours only.

/* This script and many more are available free online at
The JavaScript Source!! http://javascript.internet.com
Created by: Anonymous | http://musikimiz.googlepages.comLicensed under: Creative Commons

[code].....

View 14 Replies View Related

Display Business Hours Adjusted For The Visitor's Time Zone

Jul 20, 2005

Let's say you provide an online service from 7:00AM to 6:00PM Eastern
Time (daylight time in the summer). Is there way of showing these
hours of availability on a web page in the user's local time?

View 8 Replies View Related

JQuery :: Hide Code - Add Code To An External Js Sheet It Doesnt Seem To Work?

Jan 6, 2011

I am trying to hide this code:

HTML Code:

using this code

HTML Code:

This works fine when I place this code under the html in the main source, but if I try to add this Jquery code to an external js sheet it doesnt seem to work?

Currently my js sheet is called in the header, when I move this link to the footer of my page the code works again, so Im guessing this has something to do with where the jquery code is placed in relation to the code Im trying to hide?

How I can keep my js in the header but still make the content disappear on click?

View 2 Replies View Related

JQuery :: Application With PHP - Ajax Doesn't Work Time To Time ?

Apr 21, 2011

I'm writing an application with PHP that let me have statitics about visited pages for my web site. to save informations needed i use an ajax query with the unload event. The problem that i have is titme to time the script uses with that ajax query doesn't work especially when i stay long time in a page.

This is my code?

Why it works most of time but sometime doesn t work? is there any specifications to take for the unload event ?

View 11 Replies View Related

Make Unobtrusive Work All The Time?

Jul 11, 2009

I'm working on implementing an unobtrusive javascript where I use code instead of an HTML hook to call a function.

Old way: <input type="text" name="username" onBlur="javascript:function();" />

Now I have changed it to:

window.onload = function()
{
if(document.getElementById("username"))
{
var usernameInput = document.getElementById("username");
usernameInput.onblur = checkUsername('username','ajaxResponse');
}
}

which is placed in the body section of the page. Anyhow, my problem is that it works fine, but only once, right as the page loads. I have tried removing window.onload, but then it doesn't work at all. How can I get this to work every time I blur from the text field?

View 1 Replies View Related

Making Onmouseover Work The First Time Only?

Apr 1, 2011

I had a quick question about the function onmouseover you can apply to html. I have a slideshow at [URL] that I want to start when the mouse is moved over the images and to automatically flip through the images after this initial movement. The images are put on a delay in my separate javascript file. However, whenever I move the mouse over the image again, the slideshow jumps ahead. Is there a way to make onmouseover work the first time and then to not work every other time?

View 4 Replies View Related

Greater Comparison Operation

Feb 14, 2007

I've this comparison with two numbers

if (t.minimum.value t.maximum.value) ...

yet it's always true except when minimum and maximum are identical. Why
isn't it false when minimum is smaller than maximum?

View 13 Replies View Related

JQuery :: Can Two Functions Work At The Same Time On The Webpage

Oct 21, 2011

I wondered if two jQuery functions work at the same time on the web page. I did practice one with two jQuery functions, just one function work while other isn't. What is causing it? What should I do to prevent having one is working while others isn't ? Is there a code to put in there to prevent it? If so, where should it be at?

View 1 Replies View Related

Rollover Button Doesn't Work The First Time

Jul 14, 2010

The button shows a little toaster that revolves in response to an mouseover event. The first time you click on it nothing happens but it works the second time. Same thing with the onClick event. Doesn't work the first time, but works the second time. The code uses the setInterval function to advance through the frames. Help anyone? Check it out here:[URL]

Code:

// JavaScript Document
window.onload=initAll;
var interval=30;
var countSpin = 0;

[code]...

View 2 Replies View Related

Subtract Using Random Arrays

Jun 12, 2006

Heres my most current code. I have it where, onClick on an image it calls this. and it works, but the hp keeps restarting, like they all minus from 100, instead of the number that prieviously minused from 100. For xp: 100-9=91, is the first, the second, 100-72=28 instead of 91-72. How do i fix

var myhp;
function takehits()
{
var dmg= new Array()
dmg[0]=9;
dmg[1]=11;
dmg[2]=15;
dmg[3]=21;
dmg[4]=29;

myhp=100;
var rndtake=Math.floor(Math.random()*5);

document.getElementById('health').innerHTML=myhp-dmg[rndtake];
}
I want to have it where, you have an aray, and u have a number value that you want the number value, to be subtracted by one of the numbers in the array. And u lets say the array has 5 choices. Code:

View 4 Replies View Related

Show Number Greater Than Earlier?

Jul 19, 2011

I have to create a quite simple javascript but being a newbie I'm having trouble in it.It's a javascript about showing a value greater than the earlier for a variable.

View 8 Replies View Related

Formatting To Currency And Then Checking If Its Greater

Nov 29, 2011

Im in the process of creating a auction site for charity, im working on the last page which allows the user to enter a bid i have this javascript function that i have been working on to try and achieve the following.the user enters a bid use javascript to check to make sure its greater then and not equal to the current price simple right?where i enter 10.50 and the current price is 9.99 i get the error message saying needs to be greater,

View 7 Replies View Related

Checking Height Of Two Columns - Which One Is Greater

Nov 18, 2010

I'm trying to make a script that will check which of the two column heights is greater, make both equal to the greater height, then apply that height to the content wrapper. Here's that I have so far...

Code:
$(document).ready(function () {var rColumnHeight = $('#right_column').css('height');
var lColumnHeight = $('#left_column').css('height');[
if (lColumnHeight > rColumnHeight) {[
$('#body_content').css('height', lColumnHeight)
}else if(rColumnHeight > lColumnHeight ){
$('#body_content').css('height', rColumnHeight)
}});

Now this seems to work making the content wrapper's height equal to the greater column height, but I can't figure out how to make the two columns equal heights.

View 2 Replies View Related

Date & Time Calendar Script Doesn't Work In IE8?

May 13, 2009

I just implemented a nice little calendar popup script that I found on javascriptkit.com.It works fine in IE7, Firefox 3 and Safari 4.Here's a link to the script:I recently installed IE8 myself, and apparently this script doesn't do well in IE8.Perhaps somebody out there knows why that is, and have a solution to my problem?

View 4 Replies View Related

Subtract A Day To Date Object Using 'myDate - 1'

May 29, 2007

Am i breaking any rules when I loop dates like

// Determine Memorial Day
intFlag = 0;
memDayHol = new Date (currentYear, 4, 31);
while (intFlag == 0) {
if (memDayHol.getDay() == 1) {intFlag =1;}
else {memDayHol = memDayHol - 1;}
}

I can find no docs that one can use the '+' operator directly on a date
object, and it assumes adding/subtracting a day(s). Is this deprecated
code?

View 10 Replies View Related

How To Auto Subtract Two Text Values

Mar 16, 2011

I am trying to change the script below from adding the values to subtracting without much luck.
Code:
<script type="text/javascript" language="javascript">
function autocalc(oText) {
if (isNaN(oText.value)) //filter input {
alert('Numbers only!');
oText.value = '';
} var field, val, oForm = oText.form, netincome = a = 0;
for (a; a < arguments.length; ++a) //loop through text elements {
field = arguments[a];
val = parseFloat(field.value); //get value
if (!isNaN(val)) //number? {
netincome += val; //accumulate
}}
oForm.netincome.value = netincome; //out
}
</script>

View 1 Replies View Related

Subtract N Days From Current Date?

Nov 10, 2010

I have the following function that will subtract n number of days from todays date. The problem is that it always returns the the wrong calculate date. The month is wrong.

see if you can spot my mistake:

Code:

function returnDate(ndays){
var dayOfTheWeek = now.getDay();
now.setTime(now.getTime() - nDays * 24 * 60 * 60 * 1000);
alert(now); // returns current date
alet(now.getYear() + "/"+now.getMonth()+"/"+now.getDate()) // returns new calculated date
}

View 5 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved