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 - karyn.ulriksen

Pages: [1]
1
never mind, I found the following to work:   

if( pqtable.pqGrid( "instance" )) { pqtable.pqGrid( "destroy" ); }

2
Is there a specific command you would recommend to identify if a pqGrid instance is initialized?  I'm having trouble finding a reliable jquery or pqGrid method to determine this.

3
Help for ParamQuery Pro / Last Row Behavior with FireFox/Ubuntu
« on: February 12, 2014, 11:49:03 pm »
I generally develop on a Ubuntu desktop using Firefox and/or Chrome. I have run into an issue with selecting the last row. When it is clicked, i loose a row in the table and have to refresh the page to get it back again.  With two rows, the first row disappears leaving only the selected row.  When more than two rows are present, the last row disappears.

I do not see this issue in Firefox (or any other browser) on a Windows 8 machine.  Our audience is just as likely to use our sites/products on a unix desktop as a windows desktop, so I would like to address this issue without having to forego the use of flexHeight. 

Could you point me in the right direction to resolve this?


4
I have one column that contains one or more jquery-ui buttons.  This works great until the horizontal scroll bar is activated and that particular column is scrolled off and out of view.  Once the column scrolls out of view, the buttons loose their jquery-ui icons and their event bindings.  All other data is not impacted.





5
Help for ParamQuery Pro / Re: Filtering with local data
« on: January 08, 2014, 04:14:35 am »
All was good until I added the ability to refresh the data.    I the refreshed data view doesn't filter and trying to apply a filter after the data is refreshed results in no filtering.  I can see that the filter object is still being properly created when i log the object to console, but it appears to loose track of the data is suppose to filter... sometimes it appears to resort the data row (not per my sortIndx,  but still ignores the filter.  I want to be able to refresh data (these are statistic bits) with the filters applied.

Some background:

To accomodate your demand for flat array structures, I convert from my heirarchal JSON data structures to dataq in the following format:

        [ {data1a: 'a', data1b: 'b'}, {data2a: 'aa', data2b: 'bb'} ,  {data3a: 'aaa', data3b: 'bbb'} ]

Since these rows expand and contracts depending on whats going on, I set up the initial data structure with a push:  $("#stats_table").data('pqstore').push(data_set);   where, basically, data_set = {data1a: 'a', data1b: 'b'}; 

To refresh this, I remove the datastore, reinitialize it and then reload it:

   $("#stats_table").removeData('pqstore');
   $("#stats_table").data('pqstore',[]);
   loadStats();

Any other method is duplicating the data, but this method breaks the filtering...   Can you provide me some insight as to what needs to happen here? This feature is one of the major reasons I wanted to use this library.

6
Help for ParamQuery Pro / Local Paging
« on: January 03, 2014, 05:01:42 am »
Your local paging demo provides an example for an ajax call, not a local call.  Could I please get an example for local paging with data stored in the dom element in a JSON/array format?

ie { [ { "field1A": 'aaaaa', "field1B": "bbbbbbbb"} , { "field2A": cccc', "field2B": "dddddddd"}   ]  }

7
Help for ParamQuery Pro / Filtering with local data
« on: January 03, 2014, 02:14:40 am »
*nevermind!*   I figured this one out after much trial and error

8
Help for ParamQuery Grid (free version) / 100% table width
« on: November 07, 2013, 12:30:05 am »
I am having the devil's own time getting the table width to be predictable. 

> I've tried setting each column to add up to a total of 1080px, but the cols will wrap and squish down to the smallest size as if flexWidth had been invoked
> I've tried flexWidth and it just straight up chops about half the end off the end column
>i''ve tried setting the width = sum of the set column widths + border and padding allowance - with and without flexWidth it only displays about half the columns

I could live with the basic output if it werent for the fact that I have multiple tables with different col requirements on that screen and I would very much like to to line them up on the page so they keep nice looking.

A simplistic outline of what I'm trying to do:

<table
<tr><td colspan=2>< paramquery table#1 100% width here ></td></tr>
<tr><td colspan=2>< paramquery table#2 100% width here ></td></tr>
<tr>
    <td  width=50%>< paramquery table#3 100% width here ></td>
    <td  width=50%>< paramquery table#4 100% width here ></td>
<tr><td colspan=2>< paramquery table#5 100% width here ></td></tr>
</table>

Is there anything in this or the Pro version that I'm overlooking that addresses this??

Pages: [1]