Search Type: Posts; User: mschwartz
Search: Search took 0.05 seconds.
-
17 Mar 2013 2:02 PM
- Replies
- 58
- Views
- 9,316
I'm fine with using "me" all over the place. It's got at least two benefits mentioned in just the past few posts here.
If anything, I tend to use more descriptive words than just "me." For... -
17 Feb 2013 2:23 PM
- Replies
- 3
- Views
- 2,613
Hey Eric,
I'm absolutely using SilkJS with the ORM to implement the server side for ExtJS4.
https://github.com/mschwartz/SilkJS-extjs4
This demo implements Ext.ux.SchemaGrid class. The Grid... -
19 Oct 2012 10:31 AM
Jump to post Thread: Announcing SilkJS by mschwartz
- Replies
- 32
- Views
- 20,875
Just an update. The site is now hosted at http://silkjs.net/
-
9 Oct 2012 6:05 AM
- Replies
- 2
- Views
- 1,093
Yeah.
Life is grand when you're working on existing legacy apps that don't use the latest toolkits but do need to run on the latest phones. -
4 Oct 2012 11:38 AM
- Replies
- 2
- Views
- 1,093
load kitchen sink demo into Google Chrome on android device.
Navigate to User Interface list
Change orientation to landscape.
Scroll up/down the list.
Top items eventually go away. ... -
22 May 2012 8:10 AM
Jump to post Thread: Ext 3 to 4 Migration by mschwartz
- Replies
- 284
- Views
- 97,763
What I mean is the browser developers release new browsers with slightly different behaviors. Ext 3.4 hasn't been touched by Sencha engineers in over a year, so any new browser release may introduce...
-
22 May 2012 7:24 AM
Jump to post Thread: Ext 3 to 4 Migration by mschwartz
- Replies
- 284
- Views
- 97,763
I am watching our 3.4 project deteriorate before my eyes. First it was double click on a grid row -> open tab in tab panel leaves everything in the whole browser selected, now the grids are failing....
-
3 Apr 2012 4:09 AM
Jump to post Thread: Announcing SilkJS by mschwartz
- Replies
- 32
- Views
- 20,875
New and improved silkjs.org WWW site at http://silkjs.org. Powered by SilkJS, of course!
-
21 Feb 2012 6:29 AM
Jump to post Thread: Announcing SilkJS by mschwartz
- Replies
- 32
- Views
- 20,875
SilkJS now compiles, caches, and serves LessCSS files (files with .less extension).
It also features UglifyJS for JavaScript minification.
More like these to come. -
21 Feb 2012 6:26 AM
Jump to post Thread: Performance by mschwartz
- Replies
- 3
- Views
- 490
Yes! Now put his tools to work :)
-
21 Feb 2012 4:23 AM
Jump to post Thread: Performance by mschwartz
- Replies
- 3
- Views
- 490
I ran across this article, which has a very good discussion of performance issues in JavaScipt.
http://ariya.ofilabs.com/2012/01/scalable-web-apps-the-complexity-issue.html
It may be of use to... -
14 Feb 2012 6:38 AM
Jump to post Thread: Ext.forEach by mschwartz
- Replies
- 14
- Views
- 5,159
I'm just getting into CoffeeScript, having implemented it in SilkJS.
It seems like a lot of work to wrap ExtJS with CoffeeScript, but it could be interesting in the end. If you're just using... -
11 Feb 2012 5:26 PM
Jump to post Thread: Announcing SilkJS by mschwartz
- Replies
- 32
- Views
- 20,875
For those of you interested in CoffeeScript, SilkJS now fully supports it.
You can make CoffeeScript pages. These are files with .coffee file extensions in the server's documentRoot. The server... -
10 Feb 2012 7:34 AM
Jump to post Thread: about IDE,stability by mschwartz
- Replies
- 5
- Views
- 3,418
The designer page briefly mentions the code editor, but no real details on the editor's features. Does it do autocompletion? inspection? refactoring? etc?
Key binding? Macros?
(you get... -
10 Feb 2012 7:26 AM
Jump to post Thread: Ext.forEach by mschwartz
- Replies
- 14
- Views
- 5,159
I'm not an Ext4 user yet, though I've dabbled a little.
Ideally, a forEach() type function should work on both arrays and objects.
For example:
var a = [ 1,2,3];
forEach(a,... -
10 Feb 2012 6:59 AM
Jump to post Thread: Ext.forEach by mschwartz
- Replies
- 14
- Views
- 5,159
If the 90/10 rule is really true, then 90% of these loops should be Ext.each() for maintainability and readability.
~o) -
10 Feb 2012 6:49 AM
- Replies
- 12
- Views
- 3,386
If you're just doing JavaScript coding, Jetbrains' WebStorm IDE is only $29 and is downright amazing.
In a pinch, VI works. -
9 Feb 2012 7:17 AM
- Replies
- 24
- Views
- 2,137
If you're not really going to support it, maybe you should open source it fully.
-
9 Feb 2012 7:05 AM
- Replies
- 24
- Views
- 2,137
What's the license?
I know the stock answer is to email your licensing guys, but if it's a public repo and project, how about you tell us in public? -
9 Feb 2012 6:30 AM
- Replies
- 24
- Views
- 2,137
If Sencha isn't going to support 3.x, how about if they let some of us create a github repo and work on keeping it maintained there?
-
7 Feb 2012 2:22 PM
- Replies
- 74
- Views
- 10,589
I knew what you were talking about.
What's the point in saving a few microseconds to return unique items in an array when you have really big fish to fry like the sheer quantity of DOM nodes the... -
7 Feb 2012 1:07 PM
- Replies
- 74
- Views
- 10,589
Your code:
getDom : function(el, strict) {
if (!el || !document) {
return null;
}
if (el.dom) {//questionable use at best ??
... -
7 Feb 2012 9:58 AM
- Replies
- 74
- Views
- 10,589
Because your code doesn't return a DOM node if a DOM node is passed in. Your function returns NULL in that case.
-
7 Feb 2012 7:28 AM
Jump to post Thread: help me by mschwartz
- Replies
- 8
- Views
- 508
You are likely to have issues with users with older machines, operating systems, and (therefore) browsers.
The photoUrl I mentioned could be something like:
/fetchPhoto.php?key=db_key
Where... -
7 Feb 2012 6:51 AM
Jump to post Thread: help me by mschwartz
- Replies
- 8
- Views
- 508
return '<img src="' + record.data.photoUrl + ' " width="80%" height="80%" />';
Results 1 to 25 of 117
