Search Type: Posts; User: zonereseau
Search: Search took 0.02 seconds.
-
23 Jan 2013 5:23 AM
Jump to post Thread: Ext Direct in Form API problem by zonereseau
- Replies
- 5
- Views
- 497
I manage to create my own little function to submit my form with ExtDirect in sencha touch:
var directRouterUrl = "/direct-router";
var directSubmit = function(config) {
var params... -
15 Jan 2013 5:57 AM
- Replies
- 6
- Views
- 2,728
Hi,
It depend, for my part I'm using the remote server side search, so to have an search with >4000 <5000 I personally do the code in my php or remote code execution.
Another way if you would... -
29 Dec 2012 7:29 AM
Jump to post Thread: Ext Direct in Form API problem by zonereseau
- Replies
- 5
- Views
- 497
This is for sencha touch 2.1, I'm just saying that it work in ExtJS but seems not to be implemented yet in sencha touch and looking for a solution to use it.
-
27 Dec 2012 1:17 PM
Jump to post Thread: Ext Direct in Form API problem by zonereseau
- Replies
- 5
- Views
- 497
Hi,
Am I missing something or the Ext direct API is not implemented in the form yet? I developped a complete ExtJS 4.1 application using Ext direct API for all my Form and Grid using CRUD in the... -
29 Nov 2012 1:02 PM
- Replies
- 6
- Views
- 2,728
Hi,
The plugins your are talking about should work as well directly because the xFilterRow is using standard ExtJS form field. In fact that is what I like the most about this plugin, we could in... -
27 Nov 2012 12:59 PM
- Replies
- 3
- Views
- 1,610
Hi,
I've just tried with 4.1.1a and 4.1.3 with IE9 using WAMP as a webserver and directly with the file:// protocol and I got between 43 to 50ms.
Without webserver it's slower a bit probably... -
14 Nov 2012 10:43 PM
Jump to post Thread: FilterRow for Ext JS 4 Grids? by zonereseau
- Replies
- 67
- Views
- 14,231
Hi...
I've just create a new thread with a full example of my last version for Ext 4.1.3
I added feature such as Group heading support.
... -
14 Nov 2012 10:41 PM
- Replies
- 6
- Views
- 2,728
Hi,
I needed an RowFilter that I could use with Ext 4.1.x and that will be compatible with grouping header and locking.
So I've created this plugin. I hope that this will help someone.
... -
13 Nov 2012 12:58 PM
Jump to post Thread: [4.1.3] removeNode bug by zonereseau
- Replies
- 7
- Views
- 705
Hi,
I just drill down the code to create a test case, this wasn't an easy tasks... I just realized that was linked to one of my field that is called tagName and seems to only be a problem with... -
11 Nov 2012 5:24 AM
Jump to post Thread: [4.1.3] removeNode bug by zonereseau
- Replies
- 7
- Views
- 705
Hi,
It happen in every browser... I'll try to give you a full example to reproduce the bug... the thing is that currently we are extending a lot of custom class to create a form with a treePanel... -
10 Nov 2012 6:05 PM
Jump to post Thread: [4.1.3] removeNode bug by zonereseau
- Replies
- 7
- Views
- 705
This happened when I have a TreePanel with columns and a renderer that return back html.
this.treePanel = Ext.create('Ext.tree.Panel',{
title: __('Resources')+' ('+__('Check to give... -
10 Nov 2012 8:22 AM
Jump to post Thread: [4.1.3] removeNode bug by zonereseau
- Replies
- 7
- Views
- 705
Hi,
Beginning on line 6952 of ext-all-debug.js of version 4.1.3 there is a problem in the comparaison. You guy added n.tagName.toUpperCase() != 'BODY' without verifying before that n.tagName... -
8 Dec 2011 7:52 AM
Jump to post Thread: FilterRow for Ext JS 4 Grids? by zonereseau
- Replies
- 67
- Views
- 14,231
Ext.define('Ext.ux.grid.FilterRow', {
extend:'Ext.util.Observable',
remoteFilter:true,
init: function(grid) {
this.grid = grid;
this.grid.filterRow = this;... -
30 Nov 2011 7:33 AM
Jump to post Thread: FilterRow for Ext JS 4 Grids? by zonereseau
- Replies
- 67
- Views
- 14,231
There is no official way to do that... you have two options
One is to set the value to the filter then load the store.
You need to modify the filterrow init function so that the grid will be... -
25 Nov 2011 7:52 AM
Jump to post Thread: FilterRow for Ext JS 4 Grids? by zonereseau
- Replies
- 67
- Views
- 14,231
To remove the filter from one column just set the property nofilter:true in your column definition.
The search result will return null or ""... I suggest to treat it on the server side.
I'm not... -
3 Nov 2011 4:25 AM
Jump to post Thread: FilterRow for Ext JS 4 Grids? by zonereseau
- Replies
- 67
- Views
- 14,231
Yes It's possible to integrate a calendar or any type of field provide by extjs.
When you define your columns just pass the field config like this :
this.columns = [
{ ... -
1 Nov 2011 7:02 AM
Jump to post Thread: FilterRow for Ext JS 4 Grids? by zonereseau
- Replies
- 67
- Views
- 14,231
Hi,
I've just created a correct so that lockable columns could be used. I also add an option to use local filter or remoteFilter.
Ext.define('Progik.common.grid.FilterRow', {... -
31 Oct 2011 5:14 AM
Jump to post Thread: FilterRow for Ext JS 4 Grids? by zonereseau
- Replies
- 67
- Views
- 14,231
I've just updated it to work with ExtJS 4.07.
Ext.define('Progik.common.grid.FilterRow', {
extend:'Ext.util.Observable',
init: function(grid) {
this.grid = grid;... -
10 Aug 2011 4:28 AM
Jump to post Thread: FilterRow for Ext JS 4 Grids? by zonereseau
- Replies
- 67
- Views
- 14,231
It would be great, but before doing that we should probably do the extjs side of the filter code so that anybody could use it even without the server side of it.
-
13 Jul 2011 7:47 AM
Jump to post Thread: FilterRow for Ext JS 4 Grids? by zonereseau
- Replies
- 67
- Views
- 14,231
Have you try with the default EXTJS Theme ? On my part it work with and without the paging toolbar
-
13 Jul 2011 4:09 AM
Jump to post Thread: FilterRow for Ext JS 4 Grids? by zonereseau
- Replies
- 67
- Views
- 14,231
Here the CSS I used...
.xfilter-row {
position:absolute !important;
}
.xfilter-row input {
font-size: 11px !important;
background: #FFFFFF url(../images/filter-row-icon.png)... -
12 Jul 2011 7:51 AM
Jump to post Thread: FilterRow for Ext JS 4 Grids? by zonereseau
- Replies
- 67
- Views
- 14,231
Hi,
It seems that with the Ext 4.0.2a the name filter is reserved so I changed the pluggin a bit, maybe that will resolve your problem.
Ext.define('Ext.ux.grid.FilterRow', {... -
27 May 2011 9:27 AM
Jump to post Thread: FilterRow for Ext JS 4 Grids? by zonereseau
- Replies
- 67
- Views
- 14,231
Great job szolarp, I've put it in my code it work great...
I also add an exception so that the filter won't appear if you create a checkcolumn
applyTemplate: function() {
var... -
23 May 2011 4:53 PM
- Replies
- 0
- Views
- 409
Hi,
Suppose I have a tabpanel with 2 tab, the activetab is the seconds one... I open a new tab and set it as activetab, the click close button on the third tab, it close but the new active tab is... -
23 May 2011 8:59 AM
Jump to post Thread: FilterRow for Ext JS 4 Grids? by zonereseau
- Replies
- 67
- Views
- 14,231
Well, the action are currently bind with a ENTER keypress or onChange (when is't a datefield or a combo)... also, as you can see in the code, I put params search with field name and value in the...
Results 1 to 25 of 35
