Tagged Questions
2
votes
2answers
3k views
Ext.form.ComboBox: Use template for displayField
Is there any way to apply a template to the selected value of a ComboBox? I'm using a template to display the drop down values of the ComboBox, but as soon as i select one, the plain value from the ...
2
votes
1answer
1k views
Advanced JavaScript data store & grid widget
We have written a data store / grid widget system in JavaScript that automatically updates all widgets associated with a data store whenever some of the data changes.
Its nice features are:
it ...
1
vote
1answer
1k views
Ext Js Combo Filter by distinct items
I have two requirement to bind the EXT Js combo
-- The first Item in the combo should have the fixed text such as "Unfilterd"
-- After that I need to bind the data store to the above combo. The ...
1
vote
2answers
1k views
ExtJS Search Datastore for value
How do I search a datastore for a specific record? I've tried find() and findBy(), but both return -1.
var index = clientStore.find('ClientID', '37');
I have a combo box with a list of clients. ...
1
vote
1answer
2k views
ExtJs Grid with data from JsonStore not loading
Hy everyone,
I have ExtJS 3.2 , PHP5.3 and Oracle 10g XE.
JSON returned from MyExtJs.php :
[{"FIRST_NAME":"Ellen","LAST_NAME":"Abel"},{"FIRST_NAME":"Sundar","LAST_NAME":"Ande"}, ...
1
vote
0answers
612 views
Ext JS Problem with MultiGroupingStore/MultiGoupingView user extensions
I am facing an issue with the MultiGroupingView extension that is used to get more than one level of grouping on grid data...I am using the version posted on this thread. the thing is, whenever i move ...
0
votes
1answer
88 views
sencha phonegap cannot bind to json
I think I have read all the issues regarding sencha phonegap and json.
However I would like to seek help on how to bind my JSON in my device. In Chrome it's working perfectly, but when I compile it ...
0
votes
2answers
151 views
how get element from grid
I have grid in extjs program. Grid has 2 columns. I want to get each value in grid.
Is possible something like that (of course in JS):
foreach( row in grid ) {
row.cell[0] // do something
...
0
votes
1answer
1k views
EXTJS Problem with date field please help
i'm having trouble trying to figure out how this is happening. i'm using Extjs and AJAX with JsonStore from my callback my page in ASP call the database and return some fields in this fields there is ...
0
votes
1answer
453 views
ExtJS: Combo datastores not loading inside a fieldset
I have a fieldset issue. The form has a dropdown combo with date ranges the user can select. The dates are in an ArrayStore. If I put it outside the fieldset, it works perfectly. But once inside ...
0
votes
1answer
978 views
extjs post with parameter
I'm creating a data store that will load the data from server. I'm wondering how I can pass parameters to the proxy.
var dataStore = new Ext.data.JsonStore({
proxy:'productSearch.php',
...
0
votes
1answer
961 views
Ext JS ComboBox Dynamic Behaviour
I am trying to load/show completely different set of values in a combobox(this one resides as a editor within an EditorGridPanel) based on the valueField of another combobox(this one resides outside ...
0
votes
1answer
5k views
HELP Retrieving the url parameter from a JSON store from a EXTJS ComboBox
I am having a problem retrieving the parameters from the url section of a json store for a combobox in EXTJS from my code behind page in c#. The following is the code in the store:
var ColorStore = ...
-1
votes
1answer
53 views
exjs dataStore after save
I want to make a custom javaScript function call after my dataStore.save finished;
I have lookup for a afterSave callback for dataStore object, but it does not exists.
How can I make such call