Search Type: Posts; User: BitPoet
Search: Search took 0.03 seconds.
-
22 Dec 2011 9:51 PM
- Replies
- 2
- Views
- 1,643
Nice job :)
I've updated the post for the ExtJS2/3 version with a link to this thread. -
12 Nov 2010 9:28 AM
Jump to post Thread: Ext.ux.plugins.grid.CellToolTips by BitPoet
- Replies
- 30
- Views
- 8,530
I don't remember exactly whether this was on purpose or just plain lazyness on my part. I guess I couldn't imagine not being able to move the tooltip anyway, as I'm constantly annoyed when popups...
-
12 Nov 2010 9:18 AM
Jump to post Thread: Ext.ux.plugins.grid.CellToolTips by BitPoet
- Replies
- 30
- Views
- 8,530
Thankx jstrx, don't know how I didn't notice this before. The online version is fixed now. Let me know in case there are any issues together with the RowActions plugin.
-
3 Nov 2010 10:15 AM
Jump to post Thread: Ext.ux.plugins.grid.CellToolTips by BitPoet
- Replies
- 30
- Views
- 8,530
Thanks for your suggestion, I've modified my example source here to also apply the tip fn to the data used in non-Ajax tooltips. Let me know if that's what you need. The extension code itself can be...
-
22 Jul 2010 12:58 AM
- Replies
- 5
- Views
- 1,880
Sorry, but that's not true. Changing the field type between text and password is an operation on the underlying HTML element that every browser supports, so it's sufficient to assign the correct type...
-
21 Jul 2010 10:37 PM
Jump to post Thread: Ext.ux.plugins.grid.CellToolTips by BitPoet
- Replies
- 30
- Views
- 8,530
You can pass all regular configuration options of Ext.ToolTip to the CellToolTips in the tipConfig property. To avoid auto-hiding the tip after a certain amount of time you need to set dismissDelay...
-
21 Jul 2010 6:43 AM
- Replies
- 4
- Views
- 762
As hitting the browser's refresh button completely unloads and reloads all javascript, you'll need the app to remember things like which tab was active somewhere else. That's where Ext.StateManager...
-
20 Jul 2010 12:39 PM
- Replies
- 1
- Views
- 860
You can use "CODE_LIST" in your store's field definitions and in your column's dataIndex right away. The only thing you have to add is a renderer for your column, something like:
function... -
20 Jul 2010 12:02 PM
- Replies
- 2
- Views
- 481
The problem is with the blurring. A TriggerField listens for mouseclicks outside of the component itself to blur, and the blurring in turn ends the grid's editing action. So the solution should be to...
-
15 Jul 2010 7:54 AM
- Replies
- 1
- Views
- 580
The record's constructor stores a reference to the data, so modifying the data object also modifies the record's contents. In your case all records reference the same data object.
One usually... -
13 Jul 2010 10:35 PM
- Replies
- 1
- Views
- 883
As an XmlReader is supposed to consume more than one record, those records must be contained in the root node, not be the root node itself. So your result tags need to be wrapped inside a "document"...
-
12 Jul 2010 9:55 PM
- Replies
- 3
- Views
- 1,745
Did you try to force apply the style using "!important"?
.x-grid3-hd-inner {
font-size: 13pt !important;
font-weight: bold !important;
} -
8 Jul 2010 5:27 AM
Jump to post Thread: Append an event to dinamic tree by BitPoet
- Replies
- 13
- Views
- 974
You can add the handlers by hooking onto the TreePanel's 'append' event.
new Ext.tree.TreePanel({
listeners: {
'append' : function(tree, parent, node) {
node.on( 'click',... -
8 Jul 2010 4:46 AM
- Replies
- 12
- Views
- 1,782
Please don't camelcase words that are meant to be all lowercase, like rowdblclick - Javascript is a case sensitive language after all.
-
6 Jul 2010 9:01 AM
- Replies
- 3
- Views
- 593
Did you have a look at the example with the reusable renderer?
Initially, the combo and the grid column know nothing about each other but two things:
If you click on a cell to edit it, the... -
6 Jul 2010 8:17 AM
Jump to post Thread: deep copy/clone formpanel by BitPoet
- Replies
- 3
- Views
- 982
Condor means that instead of instanciating each formpanel on its own, like
var fp1 = new Ext.form.FormPanel({
title: 'panel1',
items: [
{ fieldLabel: 'value1', name: 'value1' }
]... -
6 Jul 2010 4:32 AM
Jump to post Thread: chart !is it abug? by BitPoet
- Replies
- 4
- Views
- 672
In the first case you are assigning a single object to the series property, while in the second one you are assigning an array of objects. Thus the following should work too:
series: [
new... -
5 Jul 2010 10:39 PM
- Replies
- 3
- Views
- 552
That's because of the duplicity of function and object in Javascript and the therefore needed prototype inheritance scheme. If you add a property to the Ext.Button object itself, it is created as an...
-
30 Jun 2010 2:59 AM
Jump to post Thread: render html ajax in a panel by BitPoet
- Replies
- 2
- Views
- 531
You need to update the panel's body, not the whole element that represents the panel. Use
Ext.getCmp('lista').body.update(objServerResponse.responseText); -
3 Feb 2010 6:31 AM
Jump to post Thread: nested JSON by BitPoet
- Replies
- 4
- Views
- 752
But one thing I just saw: you've got two fields/columns with identical names, does it help if you rename the second one to e.g. "name": "provname"?
-
3 Feb 2010 5:36 AM
Jump to post Thread: nested JSON by BitPoet
- Replies
- 4
- Views
- 752
Sorry, I take everything back, re-reading the JSON your structure is fine.
-
3 Feb 2010 3:28 AM
Jump to post Thread: nested JSON by BitPoet
- Replies
- 4
- Views
- 752
Your provincia data needs to be assigned to an attribute of your basic object with the name "provincia", i.e. (newlines added for clarity):
{...
,"data":[
{"name":"primer... -
3 Feb 2010 3:08 AM
Jump to post Thread: HELP: Error when calling doLayout by BitPoet
- Replies
- 2
- Views
- 642
Have a look at this thread, you're perhaps hitting a bug in 3.1. You can check whether that's the case by changing your remove call to:
this.remove(oldPanel, false);
and see if the error... -
8 Jan 2010 5:49 AM
- Replies
- 2
- Views
- 704
Did you try
var values =
{
city: 'Santa Clara',
countryName: 'US'
}
? Though the combo lets the user select the country's name, its value is a country code and it expects... -
8 Jan 2010 5:40 AM
- Replies
- 6
- Views
- 2,719
Did you forget to wrap your code in an Ext.onReady callback?
Results 1 to 25 of 120
