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

  • SEARCH
  • Home
  • 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 6606969
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T19:27:08+00:00 2026-05-25T19:27:08+00:00

Occasionally in firebug I’m unable to drill down into a variable expression when stepping

  • 0

Occasionally in firebug I’m unable to drill down into a variable expression when stepping through javascript code. Sometimes it’s flukey behavior and I’ll refresh the page and the next time through I am able to drill down. However with some variables I’m never able to. I’ll give an example:

I’m using the google visualization api and I have the following code:

var row = tableChart1.getSelection();
var test5 = queryWrapper1;

var dt = test5.currentDataTable;
var dv = test5.currentDataView;

var x = dv.getViewRowIndex(row[0].row);
var y = dt.getRowProperties(row[0].row);
alert(test5.currentDataTable.getRowProperty(row[0].row,"ticker"));

The variable that I’m not able to drill down into is y. Here’s the documentation for getRowProperties() (here’s the link link to documentation):

Returns: Object

Returns a map of all properties for the specified row. Note that the
properties object is returned by reference, so changing values in the
retrieved object changes them in the DataTable.

Any explanation as to why firebug won’t let me examine the properties of the returned object would be much appreciated. Thanks.

Update: I’m using firebug 1.7.3.

Also here’s a screen shot of what I’m seeing: screenshot

  • 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-05-25T19:27:09+00:00Added an answer on May 25, 2026 at 7:27 pm

    I tried testing it a bit with some example code from Google. It’s not an issue with Firebug. The object that gets returned from your call to dt.getRowProperties(row[0].row); really is empty. The documentation on getRowProperty mentions that null is returned if no such property exists. It seems that an empty object is returned for the related function getRowProperties, if there are no properties.

    The properties of a row, column, or cell are used by some visualizations to change their behavior, as explained in the documentation. You have to explicitly set these properties with the relevant functions.

    If you want to test it out, to prove that it isn’t Firebug, change the code like so:

    var row = tableChart1.getSelection();
    var test5 = queryWrapper1;
    
    var dt = test5.currentDataTable;
    var dv = test5.currentDataView;
    
    var x = dv.getViewRowIndex(row[0].row);
    
    // Add this bit
    dt.setRowProperty(row[0].row, 'foo', 'bar');
    
    var y = dt.getRowProperties(row[0].row);
    alert(test5.currentDataTable.getRowProperty(row[0].row,"ticker"));
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

No related questions found

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.