Search Type: Posts; User: aresot
Search: Search took 0.05 seconds.
-
9 May 2009 10:21 AM
Jump to post Thread: Populating TreePanel by aresot
- Replies
- 0
- Views
- 528
Hi all. I am trying to minimize number of trips to server on initial page load. Main page has 2 TreePanels which in turn produce 2-4 extra trips during main page load.
My idea is to pass JSON... -
15 Feb 2009 10:53 AM
Jump to post Thread: Drag-drop to TreePanel by aresot
- Replies
- 0
- Views
- 957
Hi. I have following snippet of the code:
this._fleets = new Ext.tree.TreePanel({
region:'west',
title:"Fleets",
collapsible: true,
... -
13 Oct 2008 11:47 PM
Jump to post Thread: ComboBox problem by aresot
- Replies
- 4
- Views
- 917
Thank you! Apparently setting triggerAction: 'all' did the trick.
-
13 Oct 2008 10:11 PM
Jump to post Thread: ComboBox problem by aresot
- Replies
- 4
- Views
- 917
Not sure Im following. Top one is mapping for reading form fields and bottom for reading list for the ComboBox.
-
13 Oct 2008 7:59 PM
Jump to post Thread: ComboBox problem by aresot
- Replies
- 4
- Views
- 917
Hi. I have problem with ComboBox when server returns empty value for it. Here is how I set it up:
var form = new Ext.form.FormPanel({
baseCls: 'x-plain',
... -
11 Oct 2008 4:32 PM
Jump to post Thread: Drag-drop to TreePanel by aresot
- Replies
- 2
- Views
- 973
Thank you! Thank you! That was it.
-
11 Oct 2008 11:03 AM
Jump to post Thread: Drag-drop to TreePanel by aresot
- Replies
- 2
- Views
- 973
Hi all. I have TreePanel which populated with JSON from server. It has only 2 levels (parents and one level of children). I need ability to drag-drop children to the parents (aka rearrange children...
-
28 May 2008 9:29 AM
Jump to post Thread: Grid Filter (Plugin) by aresot
- Replies
- 917
- Views
- 567,072
Thanks for sharing your plugin Abience. Very usefull.
I was wondering if anyone tried to mark filtered column in the header with image icon instead of font. I tried to change style for the filter... -
26 May 2008 9:06 AM
Jump to post Thread: Reloading Tree by aresot
- Replies
- 6
- Views
- 1,212
Anyhow, here is couple overwrites to build expanded nodes string and reload tree:
Ext.tree.TreePanel.prototype.reload = function () {
// traverse expanded nodes and update baseParams object... -
26 May 2008 6:30 AM
Jump to post Thread: Reloading Tree by aresot
- Replies
- 6
- Views
- 1,212
Not server side. Question is about client side Tree. Is there anything in TreePanel or TreeStore that already has this functionality.
-
26 May 2008 12:50 AM
Jump to post Thread: Reloading Tree by aresot
- Replies
- 6
- Views
- 1,212
I think I didn't explain it well:
I do realize that it is server that builds JSON for all expanded nodes but my question was if there was already function that generates expandOnlyTheseIds list from... -
25 May 2008 10:56 PM
Jump to post Thread: Finding Record in the Store by aresot
- Replies
- 8
- Views
- 17,077
I think I know what is going on.
Since Im using JsonStore object I do not explicitly specify "reader". Documentation says following: JsonStore is pre-configured with a built-in Ext.data.HttpProxy... -
25 May 2008 9:46 PM
Jump to post Thread: Reloading Tree by aresot
- Replies
- 6
- Views
- 1,212
Say I have TreePanel with bunch of nodes expanded. I need to reload that tree but keep all expanded nodes as they are. If I call tree.getLoader().load(tree.root) it reloads only nodes below the root....
-
25 May 2008 9:02 PM
Jump to post Thread: Finding Record in the Store by aresot
- Replies
- 8
- Views
- 17,077
But that was my original problem. See my #1 last phrase:
then on browser side I call store.getById("1") but get undefined as return
My point was that looks like getById() uses internal id... -
24 May 2008 8:56 AM
Jump to post Thread: Finding Record in the Store by aresot
- Replies
- 8
- Views
- 17,077
Yes it does but I think it creates "id" property instead of Reader internal id. Anyhow I solved this by just scanning through records:
store.each(function(rec) {
... -
22 May 2008 9:48 AM
Jump to post Thread: Finding Record in the Store by aresot
- Replies
- 8
- Views
- 17,077
I have JsonStore object and I need to find record with exact match for specific field. I tried 2 things:
1) when building JSON output on server side I added "id" param like that:... -
15 May 2008 9:41 PM
Jump to post Thread: Customizing spacer in the TabPanel by aresot
- Replies
- 1
- Views
- 666
Well, back to good ole hacking.:D No easy way I guess.
-
14 May 2008 8:41 PM
Jump to post Thread: Customizing spacer in the TabPanel by aresot
- Replies
- 1
- Views
- 666
Hi. I switched to the 2.0 version. In 1.x I was able to do following by overwriting createStripList function with my own:
http://andrei.dvrdns.org/TabPanel.jpg
Is there way to do that in 2.0 some... -
7 Oct 2007 5:21 PM
Jump to post Thread: Invisible <select>objects in IE by aresot
- Replies
- 2
- Views
- 965
Here is hackish solution to that bug:
OnClickOptions._dlg = new Ext.BasicDialog("OptionsDlg", {
modal:true,
autoTabs:true,
... -
3 Oct 2007 11:19 PM
Jump to post Thread: Invisible <select>objects in IE by aresot
- Replies
- 2
- Views
- 965
Bump. Anyone?
-
2 Oct 2007 4:03 PM
Jump to post Thread: ComboBox with images by aresot
- Replies
- 5
- Views
- 2,445
I certainly didn't :). Thanks for the help
-
1 Oct 2007 10:20 PM
Jump to post Thread: BasicDialog without tabs by aresot
- Replies
- 9
- Views
- 1,467
Have to admit that CSS is my weakest link here. Was doing all styling before using style attributes. Came from programming world: c,c++,Java and JavaScript soI kinda missed HTML monkey training. I...
-
1 Oct 2007 10:16 PM
Jump to post Thread: Invisible <select>objects in IE by aresot
- Replies
- 2
- Views
- 965
I have tabbed dialog box with bunch of <select> HTML objects in one of the tabs. Problem is they invisible in IE (Mozilla shows them fine). In more details: I have 2 tabs and my <select>s are in the...
-
1 Oct 2007 7:38 PM
Jump to post Thread: ComboBox with images by aresot
- Replies
- 5
- Views
- 2,445
Hi Im trying to make ComboBox that allows user to select image. I can display drop-down list of images using Template but can't find info on how to show image in Edit box itself. In other words when...
-
28 Sep 2007 9:54 AM
Jump to post Thread: BasicDialog without tabs by aresot
- Replies
- 9
- Views
- 1,467
Thank you! Thats exactly what I was looking for. :D Keep up good work guys.
Cheerz
Results 1 to 25 of 42
