Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - elearnster

Pages: [1] 2
1
ParamQuery Pro Evaluation Support / Re: ipad keyboard
« on: June 09, 2015, 08:12:02 pm »
Thanks for the feedback.  One suggestion is to add an option that will allow the return key to move through the cells by row as well as column.  This additional feature would get around the iPad keyboard not having up and down arrow keys and solve much of the problem.  On a positive note, by using your attribute feature, you can set 'type=number' and have the iPad keyboard come up with the numlock on!
eLearnster

2
ParamQuery Pro Evaluation Support / ipad keyboard
« on: June 08, 2015, 12:39:32 pm »
I really appreciate PQ Grid api and need to upgrade my version (I am on V2.1.0) which I will do this week.  The basic functionality of the iPad keyboard works well.  I especially like the 'return' key which  moves through the cells without closing the keyboard.  However, when you use 'pressToEdit' and touch a new cell for editing, it open nicely.  However, when you touch another cell to edit, the iPad closes the keyboard and quickly opens it again (A behavior that will annoy our user base).  Is there anyway within PQ Grid to keep the keyboard open as the user touches on selected cells (simulating the return key behavior but allowing the user to pick and choose the order of the editing.).

Thanks in advance.
eLearnster

3
Help for ParamQuery Pro / Re: fractions
« on: December 10, 2014, 11:35:50 pm »
Good news.  The following css code generates the desired display I am looking for.  If the see anything improper, please advise.

        div.pq-grid * {
            font-weight:bold;
            font-style:normal;
            font-family: "Arial";
            line-height:18px;
            text-shadow:none;
        }

        div.pq-grid * > tr {
            color: #FFFFFF;
            background-color: #666666;
        }

        tr.pq-grid-row > td {
            color: #666666;
       background-color: #FFFFFF;
        }

4
Help for ParamQuery Pro / Re: fractions
« on: December 10, 2014, 11:21:56 pm »
It was helpful to look at the example.  My program displays differently because I have included:

    <!--PQ Grid Office theme-->
    <link rel="stylesheet" href="../inc/pqgrid/themes/office/pqgrid.css" />   

The code in the office theme that affects the display differently is:
tr.pq-grid-row > td{
    background:#fff;
    color:#333;
}

I like this theme since it only changes the color and background in the the header.  Unfortunately, it appears to apply a reverse video on the numerator and denominator of the fractions.  Is there css code to only effect the header (th records)?  Or could I turn off the reverse video?

5
Help for ParamQuery Pro / fractions
« on: December 10, 2014, 12:53:37 pm »
I need to enter fractions and was successful with the following html for the fraction 15/25.    "<sup>15</sup>&frasl;<sub>25</sub>";

Then I changed css to have have the grid appear with a charcoal background with white text to make it consistant with the other tables in the program.  I used the following css:

      div.pq-grid * {
            color: #FAF0E6;
            background-color: #666666;
            font-weight:bold;
            font-style:normal;
            font-family: "Arial";
            line-height:18px;
            text-shadow:none;
        }

Now the fractions no longer appear correct.  The numerator and denominator are white text a black background (file attached). All the other entries in the grid appear correctly.

One way to solve my problem is to apply the css changes to the the 'th' records, but that does not seem to work.  Do you have any suggestions on how to get the fractions to appear correctly?
eLearnster



6
Help for ParamQuery Pro / Re: Relocating the grid
« on: September 26, 2014, 11:37:19 pm »
Thank you!!!

7
Help for ParamQuery Pro / Relocating the grid
« on: September 25, 2014, 09:32:10 pm »
When we initialize the Grid, we locate it inside a bootstrap nav-tab.  Everything works great.  If we want to relocate the grid when the grid is being edited, is there a way to have the grid appear inside of a new dialogue box?
eLearnster

8
Help for ParamQuery Pro / Re: reload local data array
« on: September 20, 2014, 10:59:18 pm »
Your approach worked great.  I have been using PQ-Grid for a couple of months and the software and support has been outstanding.
eLearnster.

9
Help for ParamQuery Pro / Re: reload local data array
« on: September 18, 2014, 11:18:08 pm »
The approach to change the data modal array makes sense.  I initially use arrayData1 and then try to change it to arraryData2.

Here is my syntax inside of the PQ-Grid:

        //** Execute the best year worksheet.
        var $grid1 = $("#grid_Compute_Stats").pqGrid(obj_Grid1);

Here is my syntax outside of the PQ-Grid:

        $Grid1.pqGrid("option", "dataModel", { data: arrayData1 });
        $grid1.pqGrid("refreshDataAndView");
       
        However, I am having an "Uncaught reference error: $Grid1 is not defined."

Your help is appreciated. 
eLearnster.



10
Help for ParamQuery Pro / reload local data array
« on: September 18, 2014, 04:26:37 am »
When I create a dynamic web page, I have 8 data arrays that are predefined and default to the first array.  Outside of the PG Grid's $(function () call, I need to re-assign a global variable are reload a different data array.  I tried to destroy the Grid but unable to reload the table.  Can you suggest a strategy to accomplish this?  Thank you in advance.  eLearnster

11
Help for ParamQuery Pro / Font size
« on: September 14, 2014, 11:01:47 pm »
I would like to make my font smaller for the entire worksheet.  I am not sure how to associate the 'font-size:' with the worksheet.  Your help would be appreciated.
eLearnster.

12
Help for ParamQuery Pro / Re: Gray-out cell in table
« on: August 13, 2014, 10:48:02 pm »
 Your explaination was helpful and I was able to gray and ungray the cells.  Thanks.

13
I am using "editable: false"as an option in the colModel.  I would like to make the column editable programmatically.  I tried the API below, but could not get it to work.  What API do you recommend and could you provide a little explanation?  Thanks  in advance.

//setter
//set editable of 2nd column
colM[1].editable = false;
$( ".selector" ).pqGrid( "option", "colModel", colM); 

14
Help for ParamQuery Pro / Re: Gray-out cell in table
« on: August 09, 2014, 10:52:15 am »
I reviewed the sample program, but was unable to apply any color to a specific cell in my program.  It is not clear to me how to add a class and activate it.  Could you provide me an example of the code that creates a class and applies a color to a specific cell and then changes it back?  Any help would be appreciated.

15
Help for ParamQuery Pro / Gray-out cell in table
« on: August 08, 2014, 10:10:18 pm »
I would like to be able to gray-out cells until certain other cells in the table have been completed.  Could you provide me with the API?
Thanks you.

Pages: [1] 2