-
14 Nov 2008 8:39 AM #41
Fixed it. I had an old version of the file.Thanks.
-
23 Jan 2010 9:15 AM #42
I have an app running in 2.3 using PMP 1.4, I have been converting the app over to 3.1 and PMP is giving me an issue. I'm using it with a dataview, and in 3.1 the dataview displays all the records, while it should only show one at a time. Here is what Im doing:
store config:
data for the store:Code:this.pagingStore = new Ext.data.Store({ pruneModifiedRecords : true, proxy : new Ext.ux.data.PagingMemoryProxy(), reader : new Ext.data.ArrayReader({}, [ { name: 'Page' }, { name: 'DocNo' }, { name: 'FileExt' } ]) });
Populating store:Code:arrPages = [[0, "180", "tif"], [1, "180", "tif"], [2, "180", "tif"]];
When I look into the pagingStore.data object in the app running 3.1 I see all three records, however in 2.3 I see only the one record (as it should be).Code:details.pagingStore.proxy.data = arrPages; details.pagingStore.load({params:{start:0, limit:1}});
Is there a trick to get this going in 3.1?
Katz
-
24 Jan 2010 1:54 AM #43
PagingStore is a user extensions and we cannot tell if the author already ported it to Ext 3.x. The best would be to ask in the original thread. User extensions are not supported on this forum by the Ext support team but by their authors.
Jozef Sakalos, aka Saki
A lot of valuable info at:
Saki's Extensions and Plugins
Saki's Extensions and Plugins Docs
Saki's Examples, Latest: Grid in Card Layout
Saki's Blog, Featured: Writing a Big Application in Ext, Latest: Grid MultiSearch Plugin Video
-
24 Jan 2010 5:34 AM #44
I had it working in 3.0.1 in another app at one point, however I went in another direction. That was before 3.1, so Im not sure it works in 3.1.
I have since migrated this project over to the Ext.ux.data.PagingStore and all is well.
Thanks
-
24 Jan 2010 6:53 AM #45
Perfect! Thank you to let us know that PagingStore is Ext 3.1 compatible.
Jozef Sakalos, aka Saki
A lot of valuable info at:
Saki's Extensions and Plugins
Saki's Extensions and Plugins Docs
Saki's Examples, Latest: Grid in Card Layout
Saki's Blog, Featured: Writing a Big Application in Ext, Latest: Grid MultiSearch Plugin Video
-
2 Jul 2010 4:19 AM #46
Thanks a lot...This small snippet has solved my big problem...
Thanks a lot...This small snippet has solved my big problem...
Thanks a lot...This small snippet has solved my big problem...


Reply With Quote