Search Type: Posts; User: hazimdikenli
Search: Search took 0.03 seconds.
-
28 Feb 2012 12:14 AM
- Replies
- 181
- Views
- 63,868
looks like the author of this great plug-in is not supporting it any more.
Here is a little fix for my problem; it might not be correct way of doing this, but it fixes the submit bug that I... -
21 Feb 2012 1:58 AM
- Replies
- 2
- Views
- 954
you need to modify checkcolumn to fix this
var record = (view.xtype == 'treeview') ? view.store.getAt(recordIndex) : view.panel.store.getAt(recordIndex),
dataIndex... -
21 Feb 2012 1:19 AM
- Replies
- 2
- Views
- 954
checkcolumn assumes store is a regular store not a tree store, so the following line throws an error.
var record = view.panel.store.getAt(recordIndex),
in checkcolumn.js processEvent event... -
15 Feb 2012 2:04 AM
- Replies
- 181
- Views
- 63,868
Hello,
it won't submit data
{ id: 'Sektorler'
, renderTo: 'Sektorler_combo'
, allowBlank: true
, width: 320
, selectOnFocus: true
,name: 'SektorlerValues' -
13 Feb 2012 3:50 AM
Jump to post Thread: Ext 3 to 4 Migration by hazimdikenli
- Replies
- 284
- Views
- 98,455
Hello,
couple of problems with the grid editing, first one I am using cellediting plugin, and have a couple of combobox editor columns. simple question; how do I force the editor combobox to be... -
5 Jan 2012 10:11 PM
- Replies
- 2
- Views
- 670
Yes, it does have ID field in the json data. but record's data object does not have a value for the Id property, it is simply stored in record.id property.
,data:{"rowCount":4,... -
5 Jan 2012 3:17 AM
- Replies
- 2
- Views
- 670
record.data does not have the property which is set as the idProperty, altough the fields collection has it. Which causes some trouble, so is there a way of using the idProperty and keeping it also...
-
12 Dec 2011 4:25 AM
- Replies
- 1
- Views
- 511
In each editor field configuration, setting selectOnFocus:true takes care of the problem.
-
12 Dec 2011 3:49 AM
- Replies
- 1
- Views
- 511
hello,
I want the values in the cells to be highlighted when I start editing a cell in a grid.
Using Ext 3.3 , CellSelectionModel
Any easy way of doing this?
Thanks, Hazım -
17 Nov 2011 1:26 AM
- Replies
- 1
- Views
- 328
Hello, I am using Ext JS 3.3.1
I have a pretty complex page, and I cannot change the order of initializiton of the objects.
In one of my init functions, I need a grid/store/combobox but the... -
6 Oct 2011 6:19 AM
- Replies
- 1
- Views
- 543
Hello,
I am working w/ Ext 3.3
How can I do conditional value checking, on the Ext.data package level, like
if person is married, require spouse name, otherwise let it be blank.
The solution... -
3 Apr 2011 11:38 PM
- Replies
- 0
- Views
- 487
okay, this time it is a remote combo.
I have both cityID (Guid) & CityName(text) fields in the grids store.
Grid column is set on the CityId field with a ComboBox editor with a remote store,... -
16 Feb 2011 8:32 AM
Jump to post Thread: XTemplate selector by hazimdikenli
- Replies
- 2
- Views
- 521
that makes sense, I needed something like Renderer to pickup the template but DataView does not have it, using GridPanel makes more sense for this, thanks:)
-
15 Feb 2011 11:36 PM
Jump to post Thread: XTemplate selector by hazimdikenli
- Replies
- 2
- Views
- 521
Hello,
I am trying to develop a FilterEditor using ExtJS.
user creates some range, comparison, null/notnull criterias and I need to present them in a well-formatted format, so that users can read... -
8 Feb 2011 4:58 AM
- Replies
- 623
- Views
- 216,705
I am using this w/ 3.3.1
and I included
Ext.ux.form.LovCombo.css,
Ext.ux.util.js,
Ext.ux.form.LovCombo.js
I am not seeing any checkboxes:) do I need to include anything more? What could be the... -
12 Nov 2010 6:05 AM
Jump to post Thread: jsonreader metadata by hazimdikenli
- Replies
- 4
- Views
- 760
How is my server going to know if it needs to return the metadata, I dont want to return the metadata on each call, coz I am going to be using this with a remote combo.
so maybe pass something in... -
12 Nov 2010 4:36 AM
Jump to post Thread: jsonreader metadata by hazimdikenli
- Replies
- 4
- Views
- 760
how does jsonreader ask for the metadata, if we do not configure it initially.
is there a form value or query param indicating that the store is asking for the metadata. -
8 Nov 2010 6:57 AM
- Replies
- 7
- Views
- 882
this works, thx Condor.
-
8 Nov 2010 12:42 AM
- Replies
- 7
- Views
- 882
all of a sudden, this is not working, id is returning null.
-
5 Nov 2010 3:33 AM
- Replies
- 2
- Views
- 498
Yes, thanks Condor.
-
5 Nov 2010 12:58 AM
- Replies
- 2
- Views
- 498
Hello,
on an EditorGridPanel, I set up some columns to use ComboBox'es.
It all works fine, only the grid shows the value field, which is reasonable I guess, what is the best way to set up the... -
1 Nov 2010 5:50 AM
- Replies
- 4
- Views
- 561
Actually this was what I was hoping, but it was not working because apparently I was not configuring the reader properly. The reader actually works now and everything looks much better , because I...
-
1 Nov 2010 5:02 AM
- Replies
- 4
- Views
- 561
One thing I found out in the store configuration is;
,reader: new Ext.data.JsonReader({
totalProperty: 'rowCount'
,rootProperty: 'data'
,successProperty: 'success'
,idProperty:... -
1 Nov 2010 4:33 AM
- Replies
- 4
- Views
- 561
This is a common grid/store scenario.
The only difference is I serialize the first page of data on the store and I try to load the next pages on demand. So it is a json data store in fact, but with... -
1 Nov 2010 3:21 AM
- Replies
- 7
- Views
- 882
My problem was with Ext'ifying the form object I guess. This code works fine now;
var form = Ext.get(Ext.query("form")[0].id);
form.createChild("<input type='hidden'...
Results 1 to 25 of 45
