Search Type: Posts; User: amitava
Search: Search took 0.02 seconds.
-
4 Mar 2009 1:26 AM
Jump to post Thread: Ext.air.MainWindow by amitava
- Replies
- 25
- Views
- 18,149
It works fine except one problem. The transparent main window prevents accessing anything on the desktop while the application window is active.
-
1 May 2008 10:52 AM
Jump to post Thread: Ext.air.MainWindow by amitava
- Replies
- 25
- Views
- 18,149
Does it make for a temporary solution?
Ext.onReady(function(){
var win = new Ext.Window({
id: 'window',
contentEl: 'win',
title: 'Custom Chrome',
... -
19 Apr 2008 2:03 PM
Jump to post Thread: [Solved] JsonStore - Nested JSON by amitava
- Replies
- 19
- Views
- 11,213
A BIG thanks to you Animal =D>. You saved my life. Couldn't get this far without your help. Now I can definitely access properties of 'taskseries' node using the following XTemplate:
Templates =... -
19 Apr 2008 8:02 AM
Jump to post Thread: [Solved] JsonStore - Nested JSON by amitava
- Replies
- 19
- Views
- 11,213
Thanks for the suggestion. I will give that approach a try. But I guess the problem with nested 'taskseries' nodes still remains. Any hint for resolving that?
-
19 Apr 2008 4:35 AM
Jump to post Thread: [Solved] JsonStore - Nested JSON by amitava
- Replies
- 19
- Views
- 11,213
Sure it is, or with the correction I have made to my first post it should be "rsp.tasks.list". I am using Ext.Ajax.request and then calling to store.loadData() with the response to populate the...
-
19 Apr 2008 12:40 AM
Jump to post Thread: [Solved] JsonStore - Nested JSON by amitava
- Replies
- 19
- Views
- 11,213
I am trying to present the data in a simple manner using a dataview.
Something like this
http://i286.photobucket.com/albums/ll99/amitava/rtm.png
So in this case I need to access the 'name'... -
18 Apr 2008 1:04 PM
Jump to post Thread: [Solved] JsonStore - Nested JSON by amitava
- Replies
- 19
- Views
- 11,213
Hi,
I am working with the Remember The Milk API and one of its methods returns the following JSON output.
{"rsp":{
"stat":"ok",
"tasks":{
"list":[ -
15 May 2007 3:45 AM
- Replies
- 1
- Views
- 1,113
Hi netskie,
Glad to know you are also using RoR. Its pretty simple and straightforward, thanks to the amazing extjs framework (and Jack obviously). Following are the steps you need to follow:-
... -
7 May 2007 9:11 PM
- Replies
- 53
- Views
- 10,115
sooooo sweeeeet :)
-
27 Apr 2007 10:49 PM
Jump to post Thread: Check Box Row Selection Model by amitava
- Replies
- 13
- Views
- 10,759
I am a bit confused! If you don't click the checkbox, nothing would happen and thats reasonable. getTarget() always returns the HTMLelement which is the target or source of the event. Unless you...
-
26 Apr 2007 6:22 AM
Jump to post Thread: Check Box Row Selection Model by amitava
- Replies
- 13
- Views
- 10,759
CheckBoxSelectionModel purposefully prevents row selection unless you click any checkboxes. getSelected() will only be able to return a record if the row in question is selected. I used the following...
-
19 Apr 2007 2:33 AM
Jump to post Thread: Check Box Row Selection Model by amitava
- Replies
- 13
- Views
- 10,759
Thanks a lot crouchg. I have been trying the same thing for some time but without any success. One little problem though, firebug shows an error after clicking a checkbox -
So I have changed ... -
9 Apr 2007 5:35 AM
- Replies
- 6
- Views
- 9,142
Hi all,
I am facing a problem using 'onchange' event with Ext.form.TextField. Instead of firing the handler when text changes, it fires 'onblur'. Although if the field is empty nothing happens,... -
28 Mar 2007 2:15 AM
- Replies
- 24
- Views
- 60,935
Thanks nhausig for sharing your experience.
BTW, would you please explain a little bit about those other situations where using shim:false doesn't help? Thanks again.
Amitava -
24 Mar 2007 6:07 AM
- Replies
- 24
- Views
- 60,935
I had also faced the similar problem working with yui-ext .33. After some investigating I somehow found that this only happens if shim:true, otherwise its fine. So here is my workaround tested in...
-
24 Mar 2007 1:05 AM
- Replies
- 13
- Views
- 6,180
Finally got it working . I guess my previous approach was totally wrong as I was initializing the toolbar after creating the contentpanel and loading contents via ajax. But now using the template has...
-
22 Mar 2007 10:48 PM
- Replies
- 13
- Views
- 6,180
Is there any option to apply resizeEl after the contentpanel is created? Actually I am creating a contentpanel first and loading its contents via ajax. After the contents are loaded, a toolbar is...
-
12 Mar 2007 1:16 AM
- Replies
- 6
- Views
- 8,550
Thanks. I do have checkboxes in the grid, but I am trying to do something like gmail inbox where clicking a checkbox selects/deselects the row and changes the row bgcolor. Though I am not using...
-
10 Mar 2007 6:18 AM
- Replies
- 6
- Views
- 8,550
Hi,
How to select multiple rows in a grid with checkboxes? Can anyone please help with sample codes...
TIA -
6 Mar 2007 2:40 AM
Jump to post Thread: Table inside BasicDialog by amitava
- Replies
- 2
- Views
- 1,640
As per the docs, show() method takes one param, i.e "animateTarget", so I guess it is not problematic. There is one thing I forgot to mention that QuickTips was initialized --
... -
5 Mar 2007 10:25 PM
Jump to post Thread: Table inside BasicDialog by amitava
- Replies
- 2
- Views
- 1,640
Hi,
I am having a strange problem with the basicdialog. If I put a table inside it, IE throws an exception (invalid argument) when the mouse hovers around one of the table cells. I have created... -
2 Mar 2007 3:38 AM
Jump to post Thread: RoR Integration by amitava
- Replies
- 15
- Views
- 6,872
Hi christocracy,
Nice work, must admit that. I was looking for this kind of stuff for so long but there wasn't anything close to your implementation. I am still following the approach of j_l...... -
8 Feb 2007 3:28 AM
Jump to post Thread: Rss Feed Viewer 2.0 using RoR by amitava
- Replies
- 2
- Views
- 2,525
Hi,
Finally I had to digg into feed-viewer.js and changed
YAHOO.util.Connect.asyncRequest('POST', 'feed-proxy.php', {success:success, failure:failure}, 'feed='+encodeURIComponent(url)); to ... -
7 Feb 2007 11:24 PM
Jump to post Thread: Rss Feed Viewer 2.0 using RoR by amitava
- Replies
- 2
- Views
- 2,525
Hi guys,
I was trying to recreate the awsome RSS Feed Viewer 2.0 example using using Ruby on Rails, and somehow succeeded to some extent. Before going into any length I must confess that I haven't... -
9 Dec 2006 11:44 AM
- Replies
- 3
- Views
- 2,265
Hi,
Thanks a lot. I got your point. Yes, there was an iframe inside the dialog and the height was more than the dialog height. I suppose it was my fault to post it in bug forums as I was not too...
Results 1 to 25 of 27
