Search Type: Posts; User: varunach
Search: Search took 0.04 seconds.
-
23 Mar 2013 10:14 PM
Jump to post Thread: Intercepting Component events by varunach
- Replies
- 2
- Views
- 264
That worked beautifully. Brilliant solution.
Thanks! -
23 Mar 2013 7:33 AM
Jump to post Thread: Intercepting Component events by varunach
- Replies
- 2
- Views
- 264
Hi,
I am implementing a tooltip based help for my components. So it goes like this : when a user clicks on help, a custom tooltip is shown for each important part of the component one at a time.... -
20 Feb 2013 1:42 PM
- Replies
- 5
- Views
- 177
Yeah.. The file order is important.
-
20 Feb 2013 1:03 PM
- Replies
- 5
- Views
- 177
Got the problem.. I had used a json object of the form {class : 'somevalue'}. class is a reserved keyword, so YUI compressor was complaining. If i change it to "class" it compiles successfully
-
20 Feb 2013 12:58 PM
- Replies
- 5
- Views
- 177
Also, I get an error like
[ERROR] : 8641:4:syntax error
The debug file is created but the compressed one isn't. So how do I find the file which caused the error? -
20 Feb 2013 12:54 PM
- Replies
- 5
- Views
- 177
So say if after creating my app-all.js file using JSBuilder I get a file like:
Ext.define('MyClass1, {
requires : ['MyClass2'],
initComponent : function() {
var comp =... -
20 Feb 2013 11:56 AM
- Replies
- 5
- Views
- 177
Hi,
Is the order in which I declare my files in the jsb2 file important? For example :
filesInclude : [{
text : "file1.js",
path : "path/to/file"
}, {
text : "file2.js" -
28 Jan 2013 10:09 PM
Jump to post Thread: Scroll Ext Window by varunach
- Replies
- 3
- Views
- 242
I got it working.. I had to turn off the autoScroll of the window, turn on autoScroll on the center panel and use the scrollBy function of the center panel.
Thanks.. -
28 Jan 2013 9:49 PM
Jump to post Thread: Scroll Ext Window by varunach
- Replies
- 3
- Views
- 242
A simple window with components.. For example I have
Ext.create('Ext.window.Window', {
layout : 'border',
items : [{
xtype : 'panel',
region : 'center', -
28 Jan 2013 6:13 AM
Jump to post Thread: Scroll Ext Window by varunach
- Replies
- 3
- Views
- 242
Hi,
I have an Ext window with components which don't fit into the space of the window so I get a vertical scroll bar in the window. I'm creating a help section and need to get the components into... -
23 Jan 2013 5:40 AM
- Replies
- 4
- Views
- 2,395
Thanks for the soultion. I was stuck in a similar problem. One doubt. The path in the $image_dir is relative to what? The config.rb file or the util.rb file?
-
14 Jan 2013 6:12 AM
- Replies
- 3
- Views
- 453
Add the following css keeping specificity of selector in mind. This will at least fix the firefox issue.
input:-moz-placeholder,
textarea:-moz-placeholder {
color: #999999;
}
... -
14 Jan 2013 5:01 AM
Jump to post Thread: Timefield minValue and maxValue by varunach
- Replies
- 1
- Views
- 164
Ext Version
Whatever used in the API Documentation. I use 4.1.1
Browser
Chrome 23
Description
Set minValue and maxValue of timefield. Manually input value beyond this range through keyboard.... -
22 Nov 2012 11:08 PM
- Replies
- 2
- Views
- 234
Alright. My bad :). I'll post this as a comment in the documentation for future users.
Thanks -
22 Nov 2012 10:26 PM
- Replies
- 2
- Views
- 234
Ext Version
Whatever used in the API Documentation. I use 4.1.1
Browser
Chrome 23
Description
Content area of panel does not render the tpl
Steps to reproduces problem -
8 Nov 2012 10:19 AM
- Replies
- 2
- Views
- 502
Yes, I did go through that class earlier too. From what I understood, they seem to have reversed it. Instead of looping through the handlers attached to the events on a component, they loop through...
-
8 Nov 2012 4:02 AM
- Replies
- 2
- Views
- 502
According to the MVC Application Architecture, the controller's init method is called before the launch() method of the Application is called. In the same tutorial, the component is created in the...
-
6 Nov 2012 4:13 AM
- Replies
- 2
- Views
- 886
This method is unsafe. If the component on which this tooltip is defined is destroyed, then the dom generated for the tooltip is not destroyed along with the component. We need to manage tooltip's...
-
18 Oct 2012 11:22 PM
- Replies
- 1
- Views
- 311
Ext Version
Whatever used in the API Documentation. I use 4.1.1
Browser
Chrome 22
Description
selectOnFocus not honored when navigating using keyboard tab. Works with mouse select.... -
18 Oct 2012 9:46 PM
- Replies
- 1
- Views
- 357
Could we have a work around to get it working for 4.1.1 and 4.1.2 (if the bugfix hasn't already been included there)?
Thanks -
8 Oct 2012 1:10 AM
- Replies
- 1
- Views
- 357
Ext Version
Whatever used in the API Documentation. I use 4.1.1
Browser
Chrome 22
Description
Used CellModel with CellEdit plugin : cellModel.getCurrentPosition() returns undefined everytime... -
23 Aug 2012 3:38 AM
- Replies
- 25
- Views
- 6,459
This technique works for aliases too.
From Brian Moeskau's calendar app, an Event edit window is defined as
alias : 'widget.extensible.eventeditwindow'
ComponentQuery matches the following... -
11 Aug 2012 12:05 AM
Jump to post Thread: CSS Mixins by varunach
- Replies
- 1
- Views
- 605
bump
-
9 Aug 2012 5:36 AM
Jump to post Thread: CSS Mixins by varunach
- Replies
- 1
- Views
- 605
Hi,
I'm trying out the mixins. Here's what I did
// Unless you want to include all components, you must set $include-default to false// IF you set this to true, you can also remove lines 10... -
8 Aug 2012 5:47 AM
Jump to post Thread: MVC best practices by varunach
- Replies
- 9
- Views
- 1,489
What would be best practice? Put them in controller or view? Also, performance wise, which would be faster?
Results 1 to 25 of 120
