Search Type: Posts; User: mbritton
Search: Search took 0.02 seconds.
-
6 May 2013 4:59 PM
- Replies
- 4
- Views
- 474
FWIW, my "solution" was to create a callback handler for the store's load() and call the model's setDirty() before inserting it into the store.
-
6 May 2013 10:19 AM
- Replies
- 4
- Views
- 474
You overwrote the idProperty in the model before adding to the store?
-
19 Mar 2012 10:40 AM
- Replies
- 5
- Views
- 291
You said: "You shouldn't use Ext.create outside the launch method". Am I safe in assuming this is a way of saying not to use it until the launch method has fired, to avoid potential race conditions?...
-
19 Mar 2012 10:35 AM
- Replies
- 5
- Views
- 291
I have a lot of this going on in my applications:
PostListViewMediator.prototype.createNestedList = function() {
var store = Ext.StoreMgr.lookup('postStore');
var main =... -
19 Mar 2012 10:28 AM
- Replies
- 5
- Views
- 291
Very helpful, thanks.
-
19 Mar 2012 8:24 AM
- Replies
- 5
- Views
- 291
Why isn't my nested list showing?
Thanks in advance!
var data = {
text: 'Groceries',
items: [{
text: 'Drinks', -
9 Mar 2012 10:02 AM
- Replies
- 23
- Views
- 9,033
Thanks for posting this thread. Uninstall and reinstall of 3.1.1 fixed the issue, and doesn't break Touch theming.
-
8 Mar 2012 11:03 AM
Jump to post Thread: YUICompressor Alternatives? by mbritton
- Replies
- 1
- Views
- 1,070
I'm using YUICompressor and ANT to recursively minify my JavaScript:
<?xml version="1.0" encoding="UTF-8"?>
<project name="ExtJSBoilerplate" basedir=".">
<property... -
4 Mar 2012 8:51 AM
- Replies
- 2
- Views
- 695
I was unable to get this to work :( Panel background image with Compass SASS was a non-starter.
-
2 Mar 2012 2:27 PM
- Replies
- 2
- Views
- 695
I'm trying to add a background image to a Panel, with no luck.
My config.fb:
dir = File.dirname(__FILE__) -
1 Mar 2012 1:31 PM
- Replies
- 2
- Views
- 1,023
I see, you have to add them to the proxy. Thanks!
[Solved]
store.getProxy().extraParams.getall = true;
store.getProxy().extraParams.profile = true;
store.getProxy().extraParams.blogid... -
1 Mar 2012 11:08 AM
- Replies
- 2
- Views
- 1,023
My PagingToolBar isn't sending the parameters I specify in my store.
When my application loads, I'm fetching records from my services.
PostProxy.prototype.getPosts = function() {
... -
27 Feb 2012 4:22 PM
- Replies
- 1
- Views
- 696
SCSS newb here. How would one overwrite something like this (in _list.scss) in our proprietary SCSS?
.x-list-item {
// overflow: hidden;
position: relative;
color: $list-color; -
27 Feb 2012 1:09 PM
- Replies
- 1
- Views
- 413
Duh, I was including my sheet before Sencha's. :s
-
27 Feb 2012 12:05 PM
- Replies
- 1
- Views
- 413
I'm changing my SCSS, compiling and sending the altered CSS file up to my server, but the default theme is always present.
My config:
dir = File.dirname(__FILE__) -
27 Feb 2012 10:19 AM
- Replies
- 1
- Views
- 2,046
I had Ruby installed, but it was limited to Aptana configs. I installed Ruby via http://rubyinstaller.org/, restarted, and ran the following commands:
gem install haml
gem install compass
... -
26 Feb 2012 10:21 AM
- Replies
- 1
- Views
- 2,046
When I run compass commands from the shell, it's not recognized. Is there a preliminary step (I assume there is)? Aptana snippets are in Ruby, so I already have Ruby installed.
Thanks in advance! -
22 Feb 2012 9:51 AM
- Replies
- 9
- Views
- 2,952
I'm having this same problem. Spooky.
-
15 Feb 2012 10:55 AM
- Replies
- 3
- Views
- 1,054
Sort of. I'm passing the record from a view, finding its storeId and looking up the store based on that. Than I'm saving the correct store.
Problem is, I don't feel like I should be using two... -
15 Feb 2012 10:37 AM
- Replies
- 3
- Views
- 1,054
I have multiple stores using the same model. This is because one of them contains search results, and another contains a regular record set.
You can click on a search result and it populates a... -
15 Feb 2012 10:15 AM
- Replies
- 4
- Views
- 560
Yeah:
Ext.define('Story', {
extend:'Ext.data.Model',
autoLoad:false,
idProperty: 'entry_id',
fields:[
{name:'entry_title',type:'string'}, -
15 Feb 2012 9:50 AM
- Replies
- 4
- Views
- 560
I'm doing a save:
StoryProxy.prototype.updateStory = function(record) {
console.log('StoryProxy.prototype.updateStory');
this.previousStory = this.currentStory;
... -
15 Feb 2012 9:18 AM
- Replies
- 4
- Views
- 560
When I save a store, a URL variable called "records" is screwing up the get. How do I remove this variable? I don't want to parse it out on the server.
-
15 Feb 2012 7:13 AM
Jump to post Thread: Posting JSON: New Proxy Needed? by mbritton
- Replies
- 2
- Views
- 542
Thanks for the quick reply :)
-
14 Feb 2012 12:59 PM
Jump to post Thread: Posting JSON: New Proxy Needed? by mbritton
- Replies
- 2
- Views
- 542
I'm using a JSONP proxy with a JSON writer, but want to post my updated records when I sync the store. Do I have to assign a new proxy to the store to post?
Thanks in advance!
Results 1 to 25 of 40
