Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 25 of 500
Search took 1.34 seconds.
Search: Posts Made By: kraftomatic
Forum: DOM and JSON scripting 06-04-2013, 02:37 PM
Replies: 1
Views: 361
Posted By kraftomatic
Okay, I've gotten it nearly-working, except in...

Okay, I've gotten it nearly-working, except in IE.

http://mcdesigninc.com/jquery/sample2.html

The above example works in FF and Chrome, but in IE, the fifth input field doesn't allow for input...
Forum: DOM and JSON scripting 06-03-2013, 09:24 PM
Replies: 1
Views: 361
Posted By kraftomatic
Dynamically Adding/Remove Rows with Field Validation

Hey All,

I'm trying to dynamically add and remove phone number fields, while providing validation/masking on them at the same time. I have two examples that each do part of this, but I'm...
Forum: JavaScript frameworks 06-03-2013, 08:40 PM
Replies: 9
Views: 243
Posted By kraftomatic
You're right Dan. I found the culprit and can...

You're right Dan. I found the culprit and can get it now working with .on.

Thanks.
Forum: JavaScript frameworks 06-03-2013, 06:09 PM
Replies: 9
Views: 243
Posted By kraftomatic
Using 1.8. Depreciated in 1.7 and phased out...

Using 1.8. Depreciated in 1.7 and phased out completely in 1.9.
Forum: JavaScript frameworks 06-03-2013, 04:46 PM
Replies: 9
Views: 243
Posted By kraftomatic
This actually works, but "live" is depreciated: ...

This actually works, but "live" is depreciated:


$('#btnRemove_new').live('click keypress', function(){
alert("in");
});


Any better way? I can post more code if need be.
Forum: JavaScript frameworks 05-31-2013, 08:10 PM
Replies: 9
Views: 243
Posted By kraftomatic
No change. Still not getting in. :(

No change. Still not getting in. :(
Forum: JavaScript frameworks 05-31-2013, 07:49 PM
Replies: 9
Views: 243
Posted By kraftomatic
jQuery .append Help

Hey All,

I'm trying to add a call into a function within an .append statement. The code piece looks like:


newDiv.append('<input type="text" class="phone" id="phone'+newNum+'" name="txtPhone"...
Forum: JavaScript frameworks 03-26-2013, 03:08 PM
Replies: 2
Views: 260
Posted By kraftomatic
jQuery Function - How to Count Values in This Function

Hey All,

I've got the following function which toggles checkbox and row visibility in a DataTable via ColVis.js (http://datatables.net/release-datatables/extras/ColVis/media/js/ColVis.js).

I...
Forum: HTML & CSS 12-20-2012, 03:18 PM
Replies: 0
Views: 193
Posted By kraftomatic
Best Practices - Tabular Display

Hey All,

So I have an Excel sheet of data with 15-17 columns of data. Naturally, this doesn't fit well into a web page with dynamic table sorting and such. Eight of the columns are date fields -...
Forum: DOM and JSON scripting 12-17-2012, 04:44 PM
Replies: 6
Views: 934
Posted By kraftomatic
Okay, thanks so far guys. With using old-school...

Okay, thanks so far guys. With using old-school Javascript, window.hash doesn't work in IE7 which is a problem. So I'm trying to do this in Prototype now (still can't use jQuery). I have a...
Forum: DOM and JSON scripting 12-03-2012, 01:43 PM
Replies: 6
Views: 934
Posted By kraftomatic
The page isn't using jQuery, that's part of the...

The page isn't using jQuery, that's part of the problem. It would have to be rewritten otherwise.

The page reloads after something has been added/removed, so checking the status on the reload is...
Forum: DOM and JSON scripting 11-27-2012, 04:15 PM
Replies: 6
Views: 934
Posted By kraftomatic
Check Value / Set HTML Anchor on Page Load

Hey All,

I've got an older JS page that has several buttons on it to dynamically add and remove sections to a page for editing. Each button click for this submits the form and reloads the page,...
Forum: HTML & CSS 11-12-2012, 07:44 PM
Replies: 3
Views: 332
Posted By kraftomatic
How to Override Certain CSS

Hey All - I have a site that's working fine, but am introducing a new section with a separate CSS file. The original CSS file is also being referenced and this section is blowing up the new stuff...
Forum: General web building 09-17-2012, 04:08 PM
Replies: 0
Views: 3,107
Posted By kraftomatic
Web Usability - Tabular Data Display/Sorting Best Practices

I have a client that "needs" to have 12-16 columns of data, all on one page, all clickable and all sortable. The result set can be up to 1000+ records. It's not realistic, it breaks the page...
Forum: JavaScript programming 06-15-2012, 02:27 PM
Replies: 2
Views: 263
Posted By kraftomatic
I suppose it doesn't have to be, but I think I'm...

I suppose it doesn't have to be, but I think I'm close with the above code. It's just triggering right now, regardless if a value is selected or not ..
Forum: JavaScript programming 06-14-2012, 09:24 PM
Replies: 2
Views: 263
Posted By kraftomatic
Checking For No Buttons Selected

Hey Guys,

I've got a function that works and deletes rows from a table. Now I just want to only have the delete "button" function if one of the rows is selected. I'm trying to add a check into...
Forum: JavaScript frameworks 05-23-2012, 08:54 PM
Replies: 0
Views: 732
Posted By kraftomatic
JQuery File Upload

Hey All,

Has anyone used JQuery's File Upload plugin as a simple "File Upload" replacement? I just want a textbox with a custom "Browse" button. JQuery has the following which is nice:
...
Forum: JavaScript programming 04-26-2012, 02:38 PM
Replies: 6
Views: 501
Posted By kraftomatic
Yes, moving them outside the table fixed the...

Yes, moving them outside the table fixed the issue I had found. Good point on the input type being equal to hidden as well. Not sure why I did it that way.

Thanks again.
Forum: JavaScript programming 04-25-2012, 08:34 PM
Replies: 6
Views: 501
Posted By kraftomatic
Here's an example URL for sake of ease: ...

Here's an example URL for sake of ease:

http://www.glmmrs.com/_forumImages/datatable/ie_issuewithtableid2.html
Forum: JavaScript programming 04-25-2012, 07:02 PM
Replies: 6
Views: 501
Posted By kraftomatic
Sure: <script language="JavaScript"...

Sure:



<script language="JavaScript" type="text/javascript">
function SaveProduct()
{
document.Form.submit();
}
Forum: JavaScript programming 04-25-2012, 06:36 PM
Replies: 6
Views: 501
Posted By kraftomatic
getElementByID and Table ID Issue

Hey All,

I've got the following few lines of code that set some radio button values within a table:

document.getElementById('Price' + lineNumber).value = price;...
Forum: JavaScript frameworks 04-24-2012, 03:55 PM
Replies: 1
Views: 378
Posted By kraftomatic
Figured it out. FYI: ...

Figured it out. FYI:

$('input:eq('+(index+1)+')', this).filter(':not(:disabled)').attr('checked', true).change();
Forum: JavaScript frameworks 04-24-2012, 02:49 PM
Replies: 1
Views: 378
Posted By kraftomatic
How to Check for Disabled Radio Buttons

Hey Guys,

I have the following function, which "Selects All" radio buttons in the column of a table. I'm trying to add a check that will not select one if it is set to disabled within the input...
Forum: JavaScript frameworks 04-10-2012, 04:26 PM
Replies: 0
Views: 425
Posted By kraftomatic
Toggling Between Radio and Checkboxes

Hey Guys,

I have a data table (using dataTables via JQuery) that has a number of rows that I'm trying to add some clear logic to. Each column in the table has a "Select All" link at the bottom,...
Forum: JavaScript frameworks 02-04-2012, 10:45 PM
Replies: 1
Views: 744
Posted By kraftomatic
JQuery "Hot Spot" Concept/Theme Ideas

Hey All,

I'm looking for some ideas on how to build a "hot spot" piece through JQuery. For example, if you had a photo of a car and you wanted to hover/highlight over certain parts of it, to...
Showing results 1 to 25 of 500

 
Forum Jump

All times are GMT +1. The time now is 08:58 AM.