Search Type: Posts; User: twisted_pear
Search: Search took 0.03 seconds.
-
16 Jul 2012 5:48 PM
- Replies
- 14
- Views
- 18,900
I had the same issue. I started using jshint in Eclipse to find these sooner. I hope others find it helpful too.
Project website:
http://github.eclipsesource.com/jshint-eclipse/
Update site:... -
11 Jun 2012 8:49 PM
- Replies
- 10
- Views
- 3,033
Too bad. I read the original blog post on Sencha Docs as a way to do just that, make nice JavaDocs in the sencha doc viewer. As part of GXT it sounded like if you had GXT libs, you could kickout your...
-
2 May 2012 5:51 AM
Jump to post Thread: Conditional CSS in XTemplate by twisted_pear
- Replies
- 2
- Views
- 1,126
I was having this issue with GWT this morning. Here is the deal:
"<div style=\"{0}\" class=\"{2}\"><label debugId=\"{3}\">{1}</label></div>"
* {0} is a style, so must be a SafeStyles type
*... -
22 Apr 2012 8:22 AM
Jump to post Thread: Toolbar Align Center by twisted_pear
- Replies
- 6
- Views
- 8,056
Since this post is dated, using 3.3+ ExtJs I found that it did not work. The proper way to do this on a toolbar now is:
buttonAlign: 'center'
Sincerely,
Joe -
20 Jul 2011 8:40 AM
- Replies
- 19
- Views
- 10,185
usiw,
Excellent point. What are the risk of accepting non RFC email addresses? Might some mail systems not properly handle those messages? I ask since while I know that not all email providers... -
20 Jul 2011 7:53 AM
- Replies
- 19
- Views
- 10,185
Speaking to Gmail addresses, my..n....ame@gmail.com is value, but the above regex does not allow consecutive periods.
... -
6 Jul 2011 3:23 PM
Jump to post Thread: toolbar menu open on hover by twisted_pear
- Replies
- 25
- Views
- 9,405
I had this same problem, so I cooked up this extension of Ext.Button called Ext.HoverButton. No need to change your menu's or toolbars, just switch the xtype of the buttons to hoverButton. Enjoy!
... -
1 Jul 2011 5:24 PM
- Replies
- 9
- Views
- 5,741
I had the same odd issue. I thought it was my code, but then checked out the toolbar examples for each version and pinpointed that it was an Ext Bug.
View the below in IE9
Ext 3.3.1 Example... -
28 Jun 2011 10:43 AM
- Replies
- 0
- Views
- 408
I like to use the tpl config property of boxs/Ext.toolbar.TextItems. This is nice since later I can call textItem.update( obj ); to update them.
The problem is that there is no way that I know of... -
23 May 2011 9:17 AM
Jump to post Thread: Toolbar Font Help by twisted_pear
- Replies
- 4
- Views
- 2,468
I like the above, but find that it overrides all my toolbars, including bbar's and tbar's. So, I suggest making it .x-nav-toolbar and applying that just to the toolbars cls prop where you want it (in...
-
22 May 2011 12:56 PM
Jump to post Thread: Ext.pluck Improved ! by twisted_pear
- Replies
- 5
- Views
- 2,667
Here is a simple implementation to allow deep plucking. I did not want to use any sore of OGNL parsing, or a recursive function as the first post posits, simply due to stack space and speed. I don't...
-
18 May 2011 10:31 AM
- Replies
- 33
- Views
- 6,418
In getting to this forum thread I got 3 Gateway timeouts, so please keep toiling.~o)
It's been 8 days now, so I hope you've got the scent. Any updates? -
10 May 2011 8:02 AM
- Replies
- 31
- Views
- 4,420
Hats off guys. I know it is a kick in the gut when you refactor the heck out of something and users cry out for a seemingly anachronistic functionality. However, in a the last few weeks, ExtJs and...
-
1 May 2011 12:54 PM
Jump to post Thread: Toolbar button style by twisted_pear
- Replies
- 28
- Views
- 43,840
Here are just a few more lines to flush out the css fix for toolbar button style.
Added some space between buttons so they don't bunch up
Set a min-width so that they look like FormPanel... -
1 May 2011 12:51 PM
- Replies
- 3
- Views
- 3,348
I cooked up a simple DOM walking fix for the issue of not being able to update the title of a tab in a TabPanel once it has been rendered. I could not even find the methods mentioned in the other...
-
4 Apr 2011 10:45 AM
Jump to post Thread: ComboBox : Keynav Doc Bug by twisted_pear
- Replies
- 1
- Views
- 767
Followup: The last two posts I've made, I clicked "Preview Post" and it posted it, without a preview.
FF4, WinXp SP3. -
4 Apr 2011 10:41 AM
Jump to post Thread: ComboBox : Keynav Doc Bug by twisted_pear
- Replies
- 1
- Views
- 767
In the 3.3.1 Docs, the value for keynav is showing the @Doc markup, not the formatted documentation everything else has:
... -
31 Mar 2011 9:22 AM
- Replies
- 0
- Views
- 1,048
I was pulling my hair out at first here, since I assumed that because both functions made XHR requests, and had the same input parameters, they must function the same. They don't however.
The... -
9 Dec 2010 9:26 AM
- Replies
- 1
- Views
- 583
The below code example runs fine in FF3, adding a copy of ever object property with 'X' appended to it.
In IE7 it crashes the browser.
// below runs fine in FF3
// runs FOREVER in IE7... -
2 Dec 2010 8:58 AM
- Replies
- 1
- Views
- 652
When using the documentation, searching for the following Ext functions finds nothing:
open http://dev.sencha.com/deploy/dev/docs/
select 'Any Match' from drop down
search for the... -
8 Sep 2010 7:53 AM
Jump to post Thread: Ext.pluck Improved ! by twisted_pear
- Replies
- 5
- Views
- 2,667
Oops, missed a ) in there.
// extend Pluck to search down using '.' operator
Ext.pluck = function(arr, prop){
var ret = [], fn = Ext.data.JsonReader.prototype.getJsonAccessor(prop);
... -
20 Aug 2010 1:11 PM
- Replies
- 4
- Views
- 987
I'm not sure which caused the issue, but RowEditor.js must be loaded before any other /ux/ extension.
Previously RowEditor.js was at the bottom of this list, now at the top it works well.
... -
20 Aug 2010 9:45 AM
- Replies
- 4
- Views
- 987
I'm hitting the same problem. Locally I've adapted the RowEditor example and it runs fine, but when integrated into my application's GridPanel constructor I get: ed.setWidth is not a function @...
Results 1 to 23 of 23
