-
30 Aug 2007 1:16 PM #31I'm part of the Ext Community

Maintaining: Translations and some Examples
Developing on: ExtJS Python Builder / Gozerbot
Places: Ido.nl.eu.org / My ExtSamples / Trbs on Wiki / IRC
-
17 Jul 2008 8:11 AM #32
hi trbs,
I am using ext.ux.pagingmemoryproxy and reading the data from an array in my local file. I have the data locally, and not reading it from any server. I am using gridfilters and the filtering is done only on the current displayed page and not across all the pages. I found in various posts that filtering does not work properly in pagingmemoryproxy. Is there a way to filter across all the pages ?
Regards,
Sam
-
17 Jul 2008 8:15 AM #33
I see the following code in Ext.ux.data.PMP
how can we use customfilter in our code ?HTML Code:if (this.customFilter!=null) { result.records = result.records.filter(this.customFilter); result.totalRecords = result.records.length; } else if (params.filter!==undefined) { result.records = result.records.filter(function(el){ if (typeof(el)=="object"){ var att = params.filterCol || 0; return String(el.data[att]).match(params.filter)?true:false; } else { return String(el).match(params.filter)?true:false; } }); result.totalRecords = result.records.length; }
-
23 Sep 2010 7:19 AM #34
Dear All,
Finally after spending my time googling I stumble upon this thread which pretty much everything I want. The problem is I'm so much a newbie that I don't quite understand most of the things in here. My question is, I use Ext.data.HttpProxy for my datastore. In order to use this I need to convert it into BufferedMemoryProxy. But how do I populate the BufferedMemoryProxy from database since the BufferedMemoryProxy only take local objects?
Thank you very much and sorry if this question is such a silly one. I search, googled and trying to understand various tutorials but all failed
.
Btw I'm using extjs 3 already. Let me know if this technique available on the newest version
.
-
1 Oct 2012 4:40 AM #35
Paging for JSON store + AjaxProxy
Paging for JSON store + AjaxProxy
Hi, is there any posibility to make paging toolbar operate for JSON store with AjaxProxy? Symptoms: Toolbar shows correct page number but grid didn not reflect paging toolbar page selection.
Source: local txt file with json record structure.
Thanks in advice
Similar Threads
-
[SOLVED] Memory Leak in Paging Grid Example?
By cobnet in forum Ext 2.x: Help & DiscussionReplies: 7Last Post: 3 May 2007, 8:24 PM -
Grid DataModel keeps data in memory
By tane in forum Ext 1.x: Help & DiscussionReplies: 2Last Post: 24 Feb 2007, 12:38 PM -
How to call array-grid?
By sailaja in forum Ext 1.x: Help & DiscussionReplies: 3Last Post: 16 Jan 2007, 6:56 AM -
Array-Grid in YUI
By sailaja in forum Ext 1.x: Help & DiscussionReplies: 3Last Post: 10 Jan 2007, 3:18 AM -
Array Grid Example
By qintnt in forum Ext 1.x: Help & DiscussionReplies: 1Last Post: 4 Dec 2006, 5:06 AM



Reply With Quote