User Thevs - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T04:52:01Z http://stackoverflow.com/feeds/user/8559 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1860175/how-does-a-process-come-to-know-that-it-has-received-a-signal/1893652#1893652 1 Answer by Thevs for How does a process come to know that it has received a signal Thevs 2009-12-12T14:49:21Z 2009-12-12T14:49:21Z <p>The short answer is - yes, process get knowledge of a signal only on the next scheduled CPU timeslice. </p> <p>How to know the process has received a signal - it may call sigprocmask(2).</p> http://stackoverflow.com/questions/1295584/most-efficient-way-to-create-a-zero-filled-javascript-array/1296403#1296403 2 Answer by Thevs for Most efficient way to create a zero filled JavaScript array? Thevs 2009-08-18T20:45:02Z 2009-10-08T20:05:04Z <pre><code>var str = "0000000...0000"; var arr = str.split(""); </code></pre> <p>usage in expressions: arr[i]*1;</p> <p>EDIT: if <code>arr</code> supposed to be used in integer expressions, then please don't mind the char value of '0'. You just use it as follows: <code>a = a * arr[i]</code> (assuming <code>a</code> has integer value). </p> http://stackoverflow.com/questions/1435398/drag-and-drop-gridpanel-rows-in-coolite/1448099#1448099 0 Answer by Thevs for Drag-and-Drop GridPanel rows in Coolite Thevs 2009-09-19T07:59:20Z 2009-09-19T07:59:20Z <p>Maybe you have to take a look at how rearranging columns is implemented in ExtJS (quite complicated)? And reimplement it for rows in a similar way.</p> http://stackoverflow.com/questions/1372379/load-a-external-image-in-a-ext-js-window/1376306#1376306 0 Answer by Thevs for Load a external image in a Ext.Js Window Thevs 2009-09-03T22:28:06Z 2009-09-03T22:28:06Z <p>Please take a close look at <code>body</code> property documentation:</p> <blockquote> <p><strong>body : Ext.Element</strong></p> <p>The Panel's body Element which may be used to contain HTML content. The content may be specified in the html config, or it may be loaded using the autoLoad config, or through the Panel's Updater. Read-only. If this is used to load visible HTML elements in either way, then the Panel may not be used as a Layout for hosting nested Panels. If this Panel is intended to be used as the host of a Layout (See layout then the body Element must not be loaded or changed - it is under the control of the Panel's Layout.</p> </blockquote> http://stackoverflow.com/questions/1322631/how-can-i-unserialize-a-string/1322778#1322778 1 Answer by Thevs for How can i unserialize a string? Thevs 2009-08-24T14:34:49Z 2009-08-24T21:21:05Z <p>What about to serialize (instead of your string <code>1&gt;2&gt;3&gt;&gt;4#5#6&gt;7</code>) into JSON form like this:</p> <pre><code>{'1': {'2': {'3': {'4': true}}}, '5': true, '6': {'7': true}} </code></pre> <p>Then you can unserialize it using json_decode in PHP.</p> http://stackoverflow.com/questions/1300483/how-do-i-get-column-name-from-rowselection-in-an-extjs-grid/1315553#1315553 0 Answer by Thevs for How do I get column name from rowselection in an ExtJS grid? Thevs 2009-08-22T08:58:28Z 2009-08-22T08:58:28Z <p>Please look at edit-grid.html example for checkbox rendering and event handling.</p> http://stackoverflow.com/questions/1305469/easiest-way-to-generate-graphs/1315540#1315540 0 Answer by Thevs for Easiest way to generate graphs Thevs 2009-08-22T08:55:01Z 2009-08-22T08:55:01Z <p>The latest ExtJS 3.0 has a simple line and bar charting. You can also look at <a href="http://raphaeljs.com/" rel="nofollow">Raphaeljs</a> for simple and lighweight charting.</p> http://stackoverflow.com/questions/1227391/what-cross-browser-charting-packages-are-available/1281552#1281552 6 Answer by Thevs for What cross-browser charting packages are available? Thevs 2009-08-15T09:48:54Z 2009-08-15T09:48:54Z <p>Not quite charting, but lightweight SVG/VRML cross-browser graphic library: <a href="http://raphaeljs.com" rel="nofollow">raphaeljs.com</a>.</p> <p>Very easy to make charts.</p> http://stackoverflow.com/questions/1239478/internet-explorer-and-select-tag-problem/1281547#1281547 0 Answer by Thevs for Internet Explorer and <select> tag problem Thevs 2009-08-15T09:46:03Z 2009-08-15T09:46:03Z <p>You should use <code>event.stopPropagation()</code> while in <code>&lt;select&gt;</code>, or <code>cancelBubble()</code> in <code>&lt;select&gt;</code> element itself.</p> http://stackoverflow.com/questions/1280658/how-can-i-reduce-page-reflows-when-using-javascript-widgets/1281533#1281533 0 Answer by Thevs for How can I reduce page reflows when using JavaScript widgets? Thevs 2009-08-15T09:37:25Z 2009-08-15T09:37:25Z <p>Wrap everything into invisible <code>&lt;div&gt;</code>. Then make it visible on page complete load (using <code>onLoad</code> event). </p> http://stackoverflow.com/questions/1238735/extjs-combobox-resize-problem-on-ie6/1262838#1262838 0 Answer by Thevs for ExtJs Combobox Resize Problem on IE6 Thevs 2009-08-11T20:52:33Z 2009-08-11T20:52:33Z <p>I hope this helps you.</p> <p>Extract from AnchorLayout doc:</p> <blockquote> <p><strong>AnchorLayout</strong> does not have any direct config options (other than inherited ones). However, the container using the AnchorLayout can supply an anchoring-specific config property of anchorSize. By default, AnchorLayout will calculate anchor measurements based on the size of the container itself. However, if <strong>anchorSize</strong> is specifed, the layout will use it as a virtual container for the purposes of calculating anchor measurements based on it instead, allowing the container to be sized independently of the anchoring logic if necessary.</p> <p>The items added to an AnchorLayout can also supply an anchoring-specific config property of anchor which is a string containing two values: the horizontal anchor value and the vertical anchor value (for example, '100% 50%'). This value is what tells the layout how the item should be anchored to the container. The following types of anchor values are supported:</p> <p><strong>Percentage</strong>: Any value between 1 and 100, expressed as a percentage. The first anchor is the percentage width that the item should take up within the container, and the second is the percentage height. Example: '100% 50%' would render an item the complete width of the container and 1/2 its height. If only one anchor value is supplied it is assumed to be the width value and the height will default to auto. </p> <p><strong>Offsets</strong>: Any positive or negative integer value. The first anchor is the offset from the right edge of the container, and the second is the offset from the bottom edge. Example: '-50 -100' would render an item the complete width of the container minus 50 pixels and the complete height minus 100 pixels. If only one anchor value is supplied it is assumed to be the right offset value and the bottom offset will default to 0.</p> <p><strong>Sides</strong>: Valid values are 'right' (or 'r') and 'bottom' (or 'b'). Either the container must have a fixed size or an anchorSize config value defined at render time in order for these to have any effect.</p> </blockquote> http://stackoverflow.com/questions/1259013/extjs-datefield-using-different-display-format/1262787#1262787 0 Answer by Thevs for ExtJS DateField using different display format Thevs 2009-08-11T20:39:41Z 2009-08-11T20:39:41Z <p>Use custom renderer function to display Spanish format properly.</p> http://stackoverflow.com/questions/1186832/improving-performance-of-jquery-javascript-webpage-logic/1186960#1186960 0 Answer by Thevs for Improving performance of jquery/javascript webpage logic. Thevs 2009-07-27T07:54:53Z 2009-07-27T07:54:53Z <blockquote> <pre><code>bgcolor = GetInputFieldColor(dte, false); SetBackgroundColor(day, bgcolor); </code></pre> </blockquote> <p>I'd suggest to join Get... and Set... functions into one, which obtains DOM selectors only ones.</p> http://stackoverflow.com/questions/1143498/javascript-difference-between-an-object-and-a-hash/1173894#1173894 1 Answer by Thevs for Javascript: Difference between an object, and a hash? Thevs 2009-07-23T19:17:06Z 2009-07-23T19:17:06Z <p>Actually, every object in JavaScript IS a hash. This is a hash of object's properties and methods. In fact, everything in Javascript is a hash (i.e a list of name/value pairs).</p> <p>Every time you call object's method, property, or just reference any variable, you perform internal hash lookup.</p> http://stackoverflow.com/questions/1165318/why-cant-i-keep-2-languages-in-my-head-at-the-same-time/1166470#1166470 0 Answer by Thevs for Why can't I keep 2 languages in my head at the same time? Thevs 2009-07-22T16:22:26Z 2009-07-22T16:22:26Z <p>You know when you are overworked: it's when you try to find F1 key in the elevator cabin to launch it up!</p> http://stackoverflow.com/questions/1166078/what-is-this-code-smell-called/1166441#1166441 0 Answer by Thevs for What is this code smell called? Thevs 2009-07-22T16:16:27Z 2009-07-22T16:16:27Z <p>It's just method overload replacement for dynamic OOP languages.</p> <p>Nothing special. Quite common and fairly legal.</p> <p>Look at any serious JavaScript code to see it in action (f.e. ExtJS). </p> http://stackoverflow.com/questions/1166164/is-username-one-word-or-two/1166332#1166332 1 Answer by Thevs for Is "username" one word or two? Thevs 2009-07-22T15:58:36Z 2009-07-22T15:58:36Z <p>It depends...</p> <p>userName - for Windows/Java fanatics.</p> <p>user_name - for C/UNIX/Linux fans.</p> <p>user-name - for some old languages and database programmers (Progress, Cobol, ...).</p> <p>username - for all others.</p> <p>:)</p> http://stackoverflow.com/questions/1165664/ext-js-renderer-for-columntree/1166044#1166044 0 Answer by Thevs for [ext js] Renderer for ColumnTree? Thevs 2009-07-22T15:17:45Z 2009-07-22T15:17:45Z <p>As I can see from this <a href="http://extjs.com/forum/showthread.php?t=20793" rel="nofollow">ExtJS forum post</a> they still evaluate <code>renderer</code> column property in their <code>ColumnNodeUI.js</code> subclass for rendering column data.</p> <p>So you may try to add <code>renderer</code> property along with <code>header</code>, <code>width</code> and <code>dataIndex</code>.</p> http://stackoverflow.com/questions/511020/ie7-ext-js-problem-unspecified-js-error-on-window-close/1166001#1166001 0 Answer by Thevs for IE7 Ext JS problem: Unspecified JS error on window.close() Thevs 2009-07-22T15:10:06Z 2009-07-22T15:10:06Z <p>Try to add:</p> <p><code>shim: false</code></p> <p>to popup window parameter list.</p> http://stackoverflow.com/questions/1160496/extjs-formpanel-in-a-formpanel-fails-with-this-body-is-null/1165888#1165888 0 Answer by Thevs for ExtJS FormPanel in a FormPanel fails with "this.body is null" Thevs 2009-07-22T14:53:37Z 2009-07-22T14:53:37Z <p>I think it would work if you added something (f.e. hidden textfield) into first 'form'.</p> http://stackoverflow.com/questions/1123334/ext-ajax-request-callbacks-never-called-when-isupload-is-true/1155596#1155596 1 Answer by Thevs for Ext.Ajax.request callbacks never called when isUpload is true. Thevs 2009-07-20T19:57:39Z 2009-07-20T19:57:39Z <p>This is an excerpt from <code>Ext.Ajax.request</code> documentation:</p> <blockquote> <p>isUpload : Boolean (Optional) True if the form object is a file upload (will usually be automatically detected). File uploads are not performed using normal "Ajax" techniques, that is they are not performed using XMLHttpRequests. Instead the form is submitted in the standard manner with the DOM element temporarily modified to have its target set to refer to a dynamically generated, hidden which is inserted into the document but removed after the return data has been gathered. The server response is parsed by the browser to create the document for the IFRAME. If the server is using JSON to send the return object, then the Content-Type header must be set to "text/html" in order to tell the browser to insert the text unchanged into the document body. The response text is retrieved from the document, and a fake XMLHttpRequest object is created containing a responseText property in order to conform to the requirements of event handlers and callbacks. Be aware that file upload packets are sent with the content type multipart/form and some server technologies (notably JEE) may require some custom processing in order to retrieve parameter names and parameter values from the packet content.</p> </blockquote> <p>As you can see, upload request is returned via IFRAME and only emulates standard AJAX response, so that callbacks are not called.</p> http://stackoverflow.com/questions/1123334/ext-ajax-request-callbacks-never-called-when-isupload-is-true/1140925#1140925 1 Answer by Thevs for Ext.Ajax.request callbacks never called when isUpload is true. Thevs 2009-07-17T00:10:01Z 2009-07-17T00:10:01Z <blockquote> <p>As soon as I remove it, the callback is called but the file is not uploaded to the client.</p> </blockquote> <p>Setting <code>isUpload</code> to true means you are gonna to upload file from client to server, but this is not your case, I'm afraid. </p> http://stackoverflow.com/questions/1100819/how-do-you-design-object-oriented-projects/1140612#1140612 0 Answer by Thevs for How do you design object oriented projects? Thevs 2009-07-16T22:09:08Z 2009-07-16T22:09:08Z <p>First of all - design should come from your soul. You must feel it by your every fibre. I usually walk it down for two or three months before I start doing anything, Just walking down the streets (really). And thinking. Walking is a good meditation, you know. So it lets you to concentrate well.</p> <p>Secondly - use OOP and classes only where a natural object hierarchy exists. Don't 'screw-in' it to that artificially. If no strict hierarchy exists (like in most business applications) - go for procedural/functional, or, at least use objects only as data containers with isolated accessors.</p> <p>And the last - try to read this: <a href="http://my.opera.com/vladas/blog/show.dml/412690" rel="nofollow">The Algorithm of Creative Thinking</a> </p> http://stackoverflow.com/questions/1068624/ext-js-how-to-change-the-xtype-dynamically/1068912#1068912 0 Answer by Thevs for Ext Js how to change the xtype dynamically Thevs 2009-07-01T12:32:18Z 2009-07-01T12:32:18Z <p>Supposing you have named the layout as <code>layout</code> this should be done like that:</p> <p><code>layout,getComponent('Center').add({xtype:'gridB'});</code> </p> <p>Note that you can't change xtype dynamically, you only can use <code>.add</code> method.</p> http://stackoverflow.com/questions/1056748/extjs-ie-rendering-issue/1058527#1058527 0 Answer by Thevs for ExtJs IE rendering issue Thevs 2009-06-29T14:10:03Z 2009-06-29T14:10:03Z <p>For a short hint you may try to answer the question:</p> <p>What is layout of 'center' region?</p> <p>With border layout I can see only one region, and it called 'west'. This shouldn't work as expected.</p> http://stackoverflow.com/questions/1000028/how-to-focus-radio-control-using-javascript-in-ie/1000102#1000102 0 Answer by Thevs for How to focus radio control using Javascript in IE? Thevs 2009-06-16T07:59:14Z 2009-06-16T07:59:14Z <p>Shouldn't <code>TEST[0]</code> be in lowercase? </p> http://stackoverflow.com/questions/995964/textfields-not-selectable-in-extjs-grid/997348#997348 0 Answer by Thevs for Textfields not selectable in ExtJs grid Thevs 2009-06-15T17:33:44Z 2009-06-15T17:33:44Z <p>Try to set:</p> <pre><code>tsGrid.getView().dragZone = null; (or empty object) </code></pre> <p>See <code>Ext.grid.GridDragZone</code> for more details on in-built grid drag-n-drop features. I suspect this prevents you from selecting the text in your inputs.</p> http://stackoverflow.com/questions/982214/how-do-a-get-buttons-not-to-take-the-focus/986039#986039 0 Answer by Thevs for How do a get buttons not to take the focus? Thevs 2009-06-12T10:37:30Z 2009-06-12T10:37:30Z <p>Maybe you should try to use <code>stateful</code> and state change properties for form fields or whatever to get focus back? </p> http://stackoverflow.com/questions/978225/are-there-memory-issues-with-ext-js/978958#978958 0 Answer by Thevs for Are There Memory Issues with Ext.js Thevs 2009-06-11T01:59:24Z 2009-06-11T01:59:24Z <p>I think that it's quite easy to create memory leaks when programming with ExtJS for non-experienced programmers. This is not ExtJS problem on itself. It's ExtJS programming paradigm which lets programmers to easily make such mistakes. </p> <p>From my experience I've created memory leak when tried to make a straighforward AJAX chat using ExtJS. When some objects are constantly created within AJAX callbacks (such as datastores, grid manipulations), then these objects are not released and destroyed. There must be special and very clever techniques used to avoid memory leaks with ExtJS, and it's not only related to AJAX or callbacks.</p> <p>All in all, ExtJS is great library, but it must be used carefully.</p> http://stackoverflow.com/questions/963991/strange-behavior-of-javascript/964146#964146 -1 Answer by Thevs for Strange behavior of javascript Thevs 2009-06-08T09:57:19Z 2009-06-08T23:11:10Z <p>It seems you need to do something like this right after setting returnValue:</p> <pre><code> // e comes from event handler parameter if (e &amp;&amp; e.stopPropagation) //if stopPropagation method supported e.stopPropagation() else event.cancelBubble=true; // for IE </code></pre> <p>EDIT: must be in this case</p> <p><code>window.event.cancelBubble=true;</code></p> http://stackoverflow.com/questions/1885085/best-way-to-post-files-asynchronously-with-extjs Comment by Thevs on Best way to post files asynchronously with ExtJS Thevs 2009-12-12T14:56:11Z 2009-12-12T14:56:11Z Why do you need an extra form to make AJAX request? Just use an array of names. http://stackoverflow.com/questions/1379193/extjs-grid-error-in-asp-net-mvc Comment by Thevs on ExtJs Grid Error in asp.net mvc Thevs 2009-09-05T11:25:08Z 2009-09-05T11:25:08Z Probably because you should publish only essential part of the code, not the whole. http://stackoverflow.com/questions/1313025/how-would-one-do-html-input-tag-autocomplete-in-ext-js/1313933#1313933 Comment by Thevs on How would one do html input tag autocomplete in Ext.js? Thevs 2009-08-22T08:52:46Z 2009-08-22T08:52:46Z Additionally, I think it could be set for local filtering too. http://stackoverflow.com/questions/1295584/most-efficient-way-to-create-a-zero-filled-javascript-array/1296403#1296403 Comment by Thevs on Most efficient way to create a zero filled JavaScript array? Thevs 2009-08-22T08:40:13Z 2009-08-22T08:40:13Z @dip: To be more clear: I gave an exact answer to your exact question. And in this exact case my solution is faster. http://stackoverflow.com/questions/1295584/most-efficient-way-to-create-a-zero-filled-javascript-array Comment by Thevs on Most efficient way to create a zero filled JavaScript array? Thevs 2009-08-22T08:36:06Z 2009-08-22T08:36:06Z Downvoted, because question doesn't clearly state what kind of solution wanted. Will be upvoted back when appropriate edit to the question appear. http://stackoverflow.com/questions/1295584/most-efficient-way-to-create-a-zero-filled-javascript-array/1296403#1296403 Comment by Thevs on Most efficient way to create a zero filled JavaScript array? Thevs 2009-08-22T08:32:02Z 2009-08-22T08:32:02Z @dip: It's Ok for all these things. But then you should edit your initial question to comply to all you told here. http://stackoverflow.com/questions/1295584/most-efficient-way-to-create-a-zero-filled-javascript-array/1296403#1296403 Comment by Thevs on Most efficient way to create a zero filled JavaScript array? Thevs 2009-08-19T21:31:36Z 2009-08-19T21:31:36Z Sorry, for using pre-assignend zeros. http://stackoverflow.com/questions/1295584/most-efficient-way-to-create-a-zero-filled-javascript-array/1296403#1296403 Comment by Thevs on Most efficient way to create a zero filled JavaScript array? Thevs 2009-08-19T21:29:56Z 2009-08-19T21:29:56Z Can you give an example for using zeros in math? ;) http://stackoverflow.com/questions/1295584/most-efficient-way-to-create-a-zero-filled-javascript-array/1296403#1296403 Comment by Thevs on Most efficient way to create a zero filled JavaScript array? Thevs 2009-08-19T06:21:17Z 2009-08-19T06:21:17Z @dil: What is the practical purpose of having 0 values instead '0' values? http://stackoverflow.com/questions/1295584/most-efficient-way-to-create-a-zero-filled-javascript-array/1296403#1296403 Comment by Thevs on Most efficient way to create a zero filled JavaScript array? Thevs 2009-08-18T22:16:53Z 2009-08-18T22:16:53Z @Triptych: &quot;0&quot; + 5 = &quot;05&quot; === 5. BTW, Any expression with 0, except for division is of no sense. http://stackoverflow.com/questions/1295584/most-efficient-way-to-create-a-zero-filled-javascript-array/1296403#1296403 Comment by Thevs on Most efficient way to create a zero filled JavaScript array? Thevs 2009-08-18T21:05:34Z 2009-08-18T21:05:34Z Ok. Let's count just statements in previous solutions. Every statement or expression (like i-- or other assignment) takes a var from internal cache, calculates an expression assigns it and so on... In <code>split</code> case everything works within one function and operates on one variable, Yes, I realize that '0' is not 0, but it's a little overhead to add 0 to match the integer type (if it's <i>really</i> needed). http://stackoverflow.com/questions/1295584/most-efficient-way-to-create-a-zero-filled-javascript-array/1296403#1296403 Comment by Thevs on Most efficient way to create a zero filled JavaScript array? Thevs 2009-08-18T20:55:10Z 2009-08-18T20:55:10Z BTW, the question didn't state by what kind of &quot;zeros&quot; that array must be filled. Regarding performance - I think it should be faster than all previous solutions. Remenber .join(&quot;&quot;) for string concatenation? http://stackoverflow.com/questions/1295584/most-efficient-way-to-create-a-zero-filled-javascript-array/1296403#1296403 Comment by Thevs on Most efficient way to create a zero filled JavaScript array? Thevs 2009-08-18T20:49:37Z 2009-08-18T20:49:37Z Please add comments when downvoting http://stackoverflow.com/questions/1165664/ext-js-renderer-for-columntree/1166044#1166044 Comment by Thevs on [ext js] Renderer for ColumnTree? Thevs 2009-07-22T17:45:00Z 2009-07-22T17:45:00Z Maybe you should use an inline renderer function (anonymous function) in this case ? http://stackoverflow.com/questions/1166164/is-username-one-word-or-two/1166332#1166332 Comment by Thevs on Is "username" one word or two? Thevs 2009-07-22T16:36:44Z 2009-07-22T16:36:44Z uname stands for Unix name - please don't touch it! :)