Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8447055
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T10:05:27+00:00 2026-06-10T10:05:27+00:00

I have a <td> element like this one: <td class=right editable qty>100</td> I want

  • 0

I have a <td> element like this one:

<td class="right editable qty">100</td>

I want to get the value inside that (100) but got some problem.

Here is my script:

$('#example tbody tr td.qty').change(function () {
    var sQty = $(this);

    console.log(sQty); // print [<td class="right editable qty">100</td>]
    console.log($.text(sQty)); // print nothing
    console.log(sQty.val()); // print nothing
    console.log(sQty.text()); // print nothing
    console.log(sQty.html()); // print <form><input style="width: 100%; height: 100%; " autocomplete="off" name="value"></form>
}); 

Is there something missing with my script?

I’m working with: DataTables and jeditable

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T10:05:29+00:00Added an answer on June 10, 2026 at 10:05 am
    /* Apply the jEditable handlers to the table */
    oTable.$('td.editable').editable(
        function(value, settings) {
            if($(this).hasClass('qty')) // The editable class not only on one column.
                console.log(value);
            return(value);
        },
        {   
            "height": "100%",
            "width": "100%"
        }
    );
    

    When I’m trying to run the jEditable handlers and change events (on question above), I found that the change events will be trigger first and after that the jEditable handlers. What the jEditable handlers will do is return the value and set into the cell that has been edit.

    For the default the table cell will be look like this:

    <td class="right editable qty">1</td>

    When I click the cell it will generate this form:

    <td class="rigth editable qty">
        <form>
            <input style="width: 100%; height: 100%; " autocomplete="off" name="value">
        </form>
    </td>
    

    As we see the value of the cell is disappear (This form I got when trying to inspect the element with firebug). And when I try to change the value of the input element inside the form the firebug didn’t show anything change at all (the value is hidden somewhere). So when I press the Enter button I realize that change event will be trigger first and for that moment the <td> elements is still empty, so that’s why when we try to print the value is still empty.

    So instead of using the change events to get the value, I’m using the jEditable handlers before it returns the value into the cell (the handler will be trigger if we press the Enter button).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an element like this: <div id=foo_<?php echo $id;?> class=hidden></div> I'm trying if
I have an element like this: <span class=tool_tip title=The full title>The ful&#8230;</span> This seems
Okay so say I have a form element like this: HTML: <div class=form-item> <label>Current
I have an anchor element that looks like this <a href=url><img src=imgurl/>Text</a> I would
I have an element, like this: <div id=navleft> </div> I want to make this
I have some data in an XML element that looks like this: <?xml version=1.0
I have a class definition that looks like this: public class SolrObj { [SolrUniqueKey(id)]
I have a Zend_Form with file element like this: ->addElement('file', 'image', array( 'required' =>
I have an image tag enclosed in an anchor element like this: <a href='$image'><img
I have something like this: function print_element($array, $field){ return Element: {$array[$field]}; } $array['name_en'] =

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.