Search Type: Posts; User: skirtle
Search: Search took 0.05 seconds.
-
13 Jun 2013 5:21 AM
- Replies
- 6
- Views
- 191
JSDuck is what Sencha uses to generate the documentation but it has all sorts of options to extract the information in other formats.
I can't tell from your description where the line is between... -
13 Jun 2013 2:54 AM
- Replies
- 6
- Views
- 191
You can't get to them in JS code.
Perhaps it would help if you could explain why you need them?
You can extract them by running a tool like JSDuck over the source code. -
12 Jun 2013 3:02 AM
- Replies
- 9
- Views
- 513
It's a bug.
I did a quick search myself and found 6 hard-coded 'x-' prefixes:
me.addCls('x-unselectable');
return (me.isGrouping ? Ext.fly(item) : this.el).down('table.x-grid-table');... -
9 Jun 2013 1:56 PM
- Replies
- 9
- Views
- 513
No, not at all. I was merely suggesting that you take a look at the code in ext-all-sandbox-dev.js to get a better understanding of how to set baseCSSPrefix. Adding the two lines I suggested before...
-
9 Jun 2013 2:10 AM
- Replies
- 9
- Views
- 513
Why it isn't documented I have no idea but you can figure out how to use it by taking a look at the source code. The sandbox build (build/ext-all-sandbox-dev.js) is a pretty good place to start as it...
-
7 Jun 2013 1:15 PM
- Replies
- 9
- Views
- 513
You could try setting the CSS prefix. The default is 'x-' but it's configurable via Ext.baseCSSPrefix. You'd then set the relevant SASS variable:
... -
7 Jun 2013 7:23 AM
- Replies
- 2
- Views
- 91
Try:
{name: 'OBJECTID', type: 'string', mapping: 'succinctProperties["cmis:objectId"]'} -
5 Jun 2013 9:07 AM
- Replies
- 121
- Views
- 30,499
Yes.
-
3 Jun 2013 4:25 PM
- Replies
- 2
- Views
- 254
I assume we're talking CORS here?
The OPTIONS request is constructed automatically by the browser, so you won't find any ExtJS code for building it. As far as I can tell you can't put custom... -
30 May 2013 12:20 PM
Jump to post Thread: Issue with Ext.Ajax.request POST by skirtle
- Replies
- 2
- Views
- 147
Just take a look at the POST body in the debug tools of either Chrome or Firefox. I suspect you'll find you're posting garbage.
I think you'll need to use jsonData instead of params. See:
... -
30 May 2013 2:18 AM
- Replies
- 121
- Views
- 30,499
It depends on too many things for me to put a figure on it: browser, OS, hardware, other columns, etc.
However, I would expect 500 rows to be a struggle. The only way to be sure is to try it... -
28 May 2013 6:08 AM
- Replies
- 121
- Views
- 30,499
@rt.karthik87. Please see this earlier post:
http://www.sencha.com/forum/showthread.php?148064&p=967292#post967292 -
27 May 2013 7:21 AM
- Replies
- 121
- Views
- 30,499
You could get a similar effect by putting the components in a different column of your tree but there's nothing to support injecting them into the treecolumn itself. I've not seen any UX to do that....
-
25 May 2013 5:03 PM
Jump to post Thread: EXTJS 4.2 and ext-all-scoped.css by skirtle
- Replies
- 2
- Views
- 127
http://www.sencha.com/forum/showthread.php?264460-Scoping-CSS-reset-in-4.2
-
25 May 2013 5:02 PM
Jump to post Thread: ComboBox Value In templatecolumn by skirtle
- Replies
- 2
- Views
- 137
Perhaps try a member function on your XTemplate? See the XTemplate docs for more details on member functions.
http://docs.sencha.com/extjs/4.2.1/#!/api/Ext.XTemplate
Failing that, maybe you... -
24 May 2013 10:47 AM
Jump to post Thread: Combo column grid by skirtle
- Replies
- 11
- Views
- 267
Follow the link in my first post.
-
24 May 2013 7:21 AM
Jump to post Thread: Combo column grid by skirtle
- Replies
- 11
- Views
- 267
How does what you want differ from the demo I suggested?
43981 -
24 May 2013 5:20 AM
Jump to post Thread: Combo column grid by skirtle
- Replies
- 11
- Views
- 267
You'll need to provide more information. How does what you want differ from the UXs suggested? Could you do a mock-up picture of what you're trying to achieve?
-
23 May 2013 11:54 AM
- Replies
- 4
- Views
- 132
Thinking about it a bit more, what I did was for a checkbox selection model rather than a checkbox column. The code for checkcolumn is quite short, overriding it to handle disabling the way you need...
-
22 May 2013 8:10 AM
- Replies
- 4
- Views
- 132
I had to do something similar. The approach I took was:
Added a beforeselect listener to the selection model that returns false for the disabled rows.
Added a beforeitemmouseenter listener to... -
20 May 2013 4:47 PM
- Replies
- 1
- Views
- 97
It depends on precisely what you want but pass the text through some combination of Ext.util.Format.nl2br and Ext.util.Format.htmlEncode, perhaps wrapped in a PRE tag or the CSS equivalent.
e.g.:... -
20 May 2013 4:39 PM
Jump to post Thread: Combo column grid by skirtle
- Replies
- 11
- Views
- 267
Another UX that might help you to achieve this:
http://www.sencha.com/forum/showthread.php?148066
One of the demos puts a combobox in a grid column's header in place of the text. -
20 May 2013 4:33 PM
- Replies
- 3
- Views
- 145
Windows are implicitly rendered in the middle of the viewport when they are shown, most components (including panels) are not. I'm guessing this code is based on an example that uses an...
-
17 May 2013 2:25 PM
- Replies
- 121
- Views
- 30,499
When the checkbox is clicked it calls the handler function and then updates its dirtyCls. In this case the handler function is causing a grid refresh, which destroys the checkbox and creates a new...
-
16 May 2013 10:19 AM
- Replies
- 121
- Views
- 30,499
@Richie1985. I'll need more information to figure out what the problem is. If you can't provide a full test case could you at least post the config for the column? The full stacktrace, with line...
Results 1 to 25 of 120
