Tagged Questions

12
votes
4answers
6k views

Best Way to Organize an ExtJS Project

I've just started developing an ExtJS application that I plan to support with a very lightweight JSON PHP service. Other than that, it will be standalone. My question is, what is the best way to ...
11
votes
3answers
28k views

ExtJS grab JSON result

I'm generating JSON response from PHP witch looks like this: { done:'1', options: [{ message:'Example message'},{message:'This is the 2nd example message'}]} I want to grab these results using ...
8
votes
3answers
10k views

How to post json data with extJS

I'm a bit of a newb with both extJS and json. What is the most painless route to POSTing json data using extJS? I'm not really interested any GUI features, just using the framework to send some sample ...
7
votes
2answers
5k views

Re-inserting a Record into an extJS Store

The code Ext.onReady( function() { Ext.QuickTips.init(); Ext.namespace('TimeTracker'); TimeTracker.dataStore = new Ext.data.JsonStore( { ...
6
votes
2answers
15k views

Reloading a json store with new parameters ExtJs Ext.data.JsonStore

I am currently having trouble of reloading a json store with new parameters. Here is my store: newsletters = new Ext.data.JsonStore({ url: '/newsletters/', root: 'results', ...
5
votes
4answers
270 views

extJS grid error, JSON data is not being displayed

I've configured my store as: var store = new Ext.data.JsonStore({ url: 'gridData.php', root: 'movies', fields: ['film_id', 'title', 'release_year', 'rating'] }); and then defined my grid as: var ...
5
votes
2answers
7k views

How can I override the Ext JS JsonStore timeout?

I have a JsonStore that needs to return from an HTTP request that takes longer than 30 seconds. Setting the "timeout" property on either the JsonStore config doesn't override the 30-second timeout, ...
5
votes
3answers
5k views

ExtJS: how to return json success w/ data using asp.net mvc

I am trying to use ExtJS with Asp.Net MVC, and it is going fine so far. (Nice work on ExtJS) To make things easier, I need some help returning data from .net to ExtJS. ExtJS expects to see a success ...
3
votes
1answer
124 views

Technology stack for building a web application

I'm an old C++ / algorithm guy who is making a first attempt at building a web application. I could use the community's help in making correct architectural / tech stack decisions. Here's what we're ...
3
votes
1answer
151 views

ExtJS comboBox only sets value from JSON if no [] in name

using ExtJS 3 here. I just noticed (in reply to my previous question) that the problem appears only when I'm not sending more than one combobox name. I currently have setup my combobox's name like ...
3
votes
3answers
2k views

Openlayers - LayerRedraw() / Feature rotation / Linestring coords

TLDR: I have an Openlayers map with a layer called 'track' I want to remove track and add track back in. Or figure out how to plot a triangle based off one set of coords & a heading(see below). ...
3
votes
2answers
10k views

what's basic difference between JsonStore and JsonReader in context to Ext.data?

what's basic difference between JsonStore and JsonReader in context to Ext.data ? I mean when I should go for JsonStore and when I should use JsonReader as for me both are providing same solution.
3
votes
2answers
820 views

401 Returned for every 5th call in an ASP.NET MVC application that returns JSON

This is nuts. I have an ASP.NET MVC application using Windows authentication that, amongst other things, interacts with a number of ExtJs Javascript components by returning JSON data to them. The ...
2
votes
1answer
180 views

Dynamic data store for ExtJS chart

I am trying to use JSP on server-side to perform a variable number of queries and output the result of all of them as a single block of JSON data for an ExtJS line chart. The reason the number of ...
2
votes
3answers
1k views

How to create Ext.data.Store from an unusal JSON store?

I have this JSON store but it`s not coded correctly. What is the correct syntax for it? Ext.define('MA.store.Language', { extend : 'Ext.data.Store', fields : [ { name : 'id' }, { name : ...
2
votes
1answer
713 views

ExtJS toolbar load items

I need to load items (menu) via ajax but do not understand how... trying to do like this: var tb = Ext.create('Ext.toolbar.Toolbar', { renderTo: 'top-menu', autoLoad: { ...
2
votes
2answers
2k views

How to Display Nested Json data in EXTJS 4 Grids?

I am working on ExtJS 4.0 and I want to display nested JSON data in a grid. For this I use the example given in Ext.data.reader.Reader docs, "Loading Nested Data". It is good and simple but now I want ...
2
votes
1answer
192 views

EXTJS JsonStore not loading proeprly

I have a JSONStore like : OrdersStore = Ext.extend(Ext.data.JsonStore, { constructor: function(cfg) { cfg = cfg || {}; OrdersStore.superclass.constructor.call(this, Ext.apply({ storeId: ...
2
votes
1answer
201 views

How do you set up remote autocompletion in Ext JS using a Direct store?

Aloha! I'm busy working on a project and I've come across a problem: when using a data store with the proxy of type Direct, so, a DirectStore, as the source for a combobox, I am entirely unable to ...
2
votes
1answer
627 views

EXT Js Complex JSON Response Handling : Grid Insertion - Problem

Hello I am trying to insert a JSON record into the grid dynamically. My server response is as below : { "studentDetails":{ "status":"ACTIVE", "subject":"MATH", ...
2
votes
1answer
869 views

extJS: reading a nested JSON

I have a pretty nested JSON coming from a ldap_search() call. I would like to use this information to populate an ExtJS ComboBox, but I am facing some troubles with the reader. Apparently, I am not ...
2
votes
2answers
3k views

extjs store error handling

I am trying to handle an exception in an Ext.data.Store instance when creating a new Ext.data.Record. When the server responds with the following json: {"success": false, "message": "some text"} I ...
2
votes
1answer
3k views

Sencha Touch Nestedlist JSON format Example

I'm new to sencha. Using Sencha touch. I would like to make nested listing like first of list comes, when click on one of the link it goes to another listing, when click on second list's any link it ...
2
votes
1answer
1k views

ExtJS grid - how to focus on added row?

I have a grid(gridpanel) and data in it which I read from json query. After I added new bussines object(row) - I send him in json format to server, write to DB, and reload all grid. How I can focus on ...
2
votes
1answer
575 views

ExtJS XTemplate and empty JSON parsing

How do you determine that a JSON object is empty in a XTemplate? I've tried <tpl if="myObject != {}"> <tpl if="myObject"> <tpl if="myObject != undefined"> etc, but can't seem to ...
2
votes
6answers
2k views

Using ExtJS with ASP.NET, Webforms or MVC?

For a scenario using 0 ASP.NET controls at all but rather an 100% extJS interface, what would be the advantages of using ASP.NET MVC or ASP.NET WebForms? And the disadvantages? Is there a OBVIOUS way ...
2
votes
2answers
2k views

Ext JsonStore doing a POST even if I set it to GET

I have a jsonstore that is supposed to load a user's information. I have its HTTPRequest as a GET but when I finally do load up the store with parameters, it automatically changes to a POST request. ...
2
votes
2answers
7k views

ExtJS - SyntaxError: missing ) in parenthetical

I am writing some code to educate myself in the ways of ExtJS. I am also new to JSON so hopefully this question will be easy for you to answer. I am trying to retrieve some data from a basic web ...
2
votes
1answer
3k views

extjs datastore send to server (datastore -> json)

Getting Json from the Server and displaying it in the grid is relatively straight forward. In the application (http://pssnet.com/~devone/extjs3/loadSelection5.html) I generate a dynamic grid ...
2
votes
1answer
16k views

ExtJS grid callback on load and reload

I have an Ext Grid and want to grab the JSON "success":false/true response an execute a function for each situation. I would like to have it as callback function for every grid interaction with the ...
2
votes
4answers
5k views

How to read JSON from Ruby on Rails with ExtJS

I have some existing projects that were built upon a deprecated PHP framework, and I'm hoping to move them over to Ruby on Rails with minimal effort. My main problem right now is the format that the ...
1
vote
1answer
51 views

Zend Forms and Ext.grid.Panel

I am working for a company who use tabulated html/JS interfaces. These are home grown (real honest to god s) with query events attached to each cell. For the old usage they were suitable, but the ...
1
vote
1answer
105 views

extJS4 difference between Ext.Ajax and Ext.data.proxy.Ajax

I am new to the extJS framework and after looking at these two classes I am curious when it is better to use one or the other. Is one better for submitting and one for getting? In my current situation ...
1
vote
1answer
112 views

ASP.NET MVC 3 with ExtJS returning wrong json

Here's my return code: return Json(new { success = success, message = message }, JsonRequestBehavior.AllowGet); And i always get a "(" and "pre" tag before and after the json (stackoverflow does ...
1
vote
1answer
162 views

EXTJS Load JSONStore to grid after asynchronous get

I have a JSON store that I would like to auto load into a grid.panel. Unfortunately, after it completes the asynchronous get, nothing is populated in the grid. Firebug shows that the JSON was ...
1
vote
2answers
179 views

Loading hasMany data in ExtJS

I'm trying to load 'nested' data in a hasMany relation in ExtJS4. My model looks like this: Ext.define("Entrypage.model.Entrypage",{ extend: "Ext.data.Model", fields: ...
1
vote
3answers
116 views

Right way to pass Django objects to ExtJS

Django has a built in serialization functionality which allows you to serialize any query result set into JSON: json_serializer = serializers.get_serializer("json")() ...
1
vote
1answer
200 views

ExtJs loading data

I'm trying to load data from imdb, but i have no results in table (GridPanel). It's my source code: ... <body> <script type="text/javascript"> Ext.onReady(function(){ var store1 = new ...
1
vote
1answer
123 views

How to create a data grid with data store sub-array values in Ext 4?

I have a multidimensional array as follows (PHP outputs to valid JSON), and have linked it via JSON data store to Ext. This is an excerpted version of the array: $data = array( ...
1
vote
0answers
230 views

ExtJS: directfn and TreeStore - not loading

What's the right way to use a TreeStore with directFn? Here's how I'm doing it: var categoryStore = Ext.create('Ext.data.TreeStore', { //storeId:'categoryStore', autoLoad:true, root: { ...
1
vote
1answer
370 views

Converting an Ext.data.TreeStore to JSON

I need to stringify an Ext.data.TreeStore (cause I wanna save it to Local Storage), but calling Ext.encode() doesn't work -- I get a circular structure error. Has anyone done this before?
1
vote
1answer
368 views

ExtJS4 dynamically loading items in toolbar

how can i load items, in a extjs4 toolbar dynamically? i want to load the items from json. ive tried the loader, but i just became headache. sry for bad english and thanks for any information! ...
1
vote
4answers
183 views

How to create a JavaScript date object from a JSON store?

I have following JSON response created by Doctrine 2 as a datetime entity in server-side and encoded as JSON by zend framework`s Zend_Json::encode($stores) method: { "birthdate": {"date":"2011-08-19 ...
1
vote
1answer
149 views

Sending a json object from extjs page to backend

I am new to Extjs. I wanted to know how can I send a json object to the backend from an extjs page. I am using python to connect to the databse. What I wanted to do was, if an user enters data on the ...
1
vote
2answers
299 views

How to create more than one JSON store from a get request?

Lets suppose I have this web application built using extjs4 in my client-side and a Zend framework action controller in server-side. I have array of arrays in server-side that they could be output as ...
1
vote
3answers
638 views

Can't get external data into ExtJS (Sencha Touch) chart

EDIT: ANSWERED Worked it out. Posting to Stack Overflow actually pointed me to the answer! Basically it appears there's something funny about Ext.data.JsonStore with Sencha Touch. Maybe some of the ...
1
vote
1answer
459 views

ExtJS 4 tree panel items visible in Firefox but not in Chromium

I was creating Tree Panel similar to TreeGrid example with drag'n'drop. The only problem is that items are correctly shown in tree panel in Firefox browser whereas in Chromium tree grid is empty. ...
1
vote
2answers
208 views

Json data reading problem in EXT Js?

the server returns data: { "items": [{ "id": "671", "post_title": "Seche Vite Dry Fast Top Coat", "post_content": "<span style=\"color\: ...
1
vote
1answer
148 views

Ext.encode() quits partially through

I've been observing a certain page built off Ext 3 has been responsible for sending malformed JSON to a C# handler. 95%+ of the time the JSON is OK. But sometimes the error logs show the handler ...
1
vote
1answer
2k views

ExtJS 4 Loading data into form panel on creation. Which event to catch?

I'm stuck with populating Ext.form.Panel with data in my MVC project. In Controller I want to load data from store into form. But I cannot access basic form via form panel. Form view ...

1 2 3 4 5