Sharing Operating System Sub-Processes Across Tasks - Patent :: by S Jayaraman - 2009 - All 3 versionsOct 8, 2009 United States Patent Application 20090254919. Kind Code: A1. An operating system permits sharing of a sub-process (or process unit) across http://www.freepatentsonline.com/y2009/0254919.htmlHOME
I'm new to ExtJS and Javascript in general. I've been working at learning it over the last few months. I'm working at building a web based application using ExtJS. I have the datastores functioning fine when I duplicate the code in all the relevant files, however, I've been trying to break out code into included files rather than have 1 huge file or duplicate code in multiple files. Here is the relevant code:
The Semantic Web lifts off:: The second application is focused on the informal and often heuristic processes a critical feature to encourage sharing of semantic content. community, and institutional stores and across value chains that provide useful http://www.ercim.eu/publication/Ercim_News/enw51/berners-lee.htmlHOME
Shared sign-on across web applications:: May 25, 2007 Shared sign-on across web applications What I think mod_auth_tkt does is to hash the username with a secret code and store it in a cookie. The secret code is share between all the applications. http://grahamstratton.org/blog/public/articles/2007/05/25/shared-sign-on-across-web-applicationsHOME
HTML file:
Portion of datastores.js:
Please note that I do not define the variables inside of functions in this file.
var ProvinceDataStore = Ext.data.Store({
id : 'ProvinceDataStore',
proxy : new Ext.data.HttpProxy({
url : '/cgi-bin/caam/caam.cgi',
method : 'POST'
}),
baseParams : {
task : "API_LIST_PROVINCE"
}, // this parameter is passed for any HTTP request
reader : new Ext.data.JsonReader({
root : 'results',
totalProperty : 'total',
id : 'id'
}, [{
name : 'ProvinceID',
OTN Discussion Forums : HTTP Session sharing across multiple :: 12 posts - 3 authors - Last post: Jan 12is it possible to share the session across my 3 applications <persistent-store-type>memory</persistent-store-type> http://forums.oracle.com/forums/thread.jspa?threadID=1010819HOME
Use Excel's hidden data store to share data across VBA projects :: Jul 6, 2009 Use Excel's hidden data store to share data across VBA projects a value to an existing named item in the hidden data store Application. http://www.experts-exchange.com/articles/Software/Office_Productivity/Office_Suites/MS_Office/Excel/Use-Excel's-hidden-data-store-to-share-data-across-VBA-projects.htmlHOME
type : 'int',
mapping : 'ProvinceID'
}, {
name : 'Name',
type : 'string',
mapping : 'Name'
}, {
name : 'Code',
type : 'string',
mapping : 'Code'
},
]),
sortInfo : {
field : 'Name',
direction : "ASC"
}
});
I'm trying to access that datastore from inside customers.js as follows:
ProvinceDataStore.load();
However I'm receiving the following error:
ProvinceDataStore is not defined
http://127.0.0.1/js/customers.js
Line 32
I would greatly appreciate any tip or pointer in the right direction. I've studied the ExtJS docs and tutorials as well as spent several hours on google but I've been unable to figure out what I'm doing wrong.
Thanks,
Darren Wiebe
Thanks again, I spent much of my available time this week on this problem and wasn't getting anywhere. I'm off and away again. ExtJS Rules!
Thanks a huge amount for your encouragement. You said you'd done something like it and that set me looking again. Here's what the problem was:
var ProvinceDataStore = Ext.data.Store({
should be:
ProvinceDataStore = new Ext.data.Store({
Doing that it works perfectly
I tried this similar setup in my application and did not have a problem. Can you post some more of the code in your DataStores files that wraps your ProvinceDataStore variable.