Questions tagged [extjs3]

Ext JS 3 is the third major version of JavaScript library for building Rich Internet Applications (RIA).

Ext JS 3 is the third major version of JavaScript library for building Rich Internet Applications (RIA).

Documentation for Ext JS 3.4 is available from Sencha, while documentation for Ext JS 3.0 can be difficult to find outside of personally hosted API docs. Here's one: http://www.vinylfox.com/docs/

See for more information.

1023 questions
6
votes
2 answers

Paste from word to extjs editor

and i found one more issue with extjs editor. when i copy the
  1. Bhaskara Arani
    • 1,556
    • 1
    • 26
    • 44
6
votes
1 answer

Populate ExtJS 3.4 combobox with local JSON data

I'm using ExtJS 3.4 and I need to populate a combobox with the following data: "[{"cod_domini":"1","nom_domini":"Sant Esteve de Palautordera"},{"cod_domini":"2","nom_domini":"Parc Natural del Montseny"},{"cod_domini":"5","nom_domini":"Sant Pere de…
Calypo Gunn
  • 167
  • 1
  • 2
  • 9
6
votes
1 answer

ExtJS On/Off Button

I want to create mobile like on/off button with extjs in my web application. I couldn't find any sample or solution for this. I want actually like this: Demo CSS /* Created by @JohnieHjelm. I took the liberty of doing this ON/OFF switch …
vtokmak
  • 1,496
  • 6
  • 35
  • 66
5
votes
4 answers

Reverse engeering cross domain POST requests which use Ext.Ajax.request

I'm working with a script which seems to use Ext.Ajax.request (with ExtJS 3) to send cross-domain requests - some of them POST requests. Considerations are being made to move away from ExtJS3 (perhaps move away from ExtJS in general) but a quick…
Richard JP Le Guen
  • 28,364
  • 7
  • 89
  • 119
5
votes
2 answers

Is there a standard design pattern for ExtJS

We use ExtJS 3.x pretty heavily within our flagship application. Our application's admin area is split into the different modules that we offer. Each module, and subsequently each page for the different CRUD actions of the module have their own .js…
Brandon Cordell
  • 1,308
  • 1
  • 9
  • 24
5
votes
5 answers

How to get the parent of a menu?

I'm trying to get the component in which a menu is linked. Take a look: Ext.create('Ext.Button', { id: 'MyButton', text: 'Click me', renderTo: Ext.getBody(), menuAlign: 'tl-bl', menu: { itemId: 'MyMenu', …
Roberto Schuster
  • 293
  • 2
  • 5
  • 16
5
votes
2 answers

How can I add tools in a tab of an Extjs TabPanel?

How can I add the buttons (tools) in the header of each tab, in a TabControl? I just could add tools in the TabPanel, but I want to add in the tabs. Image I also tried this, but no success: var lTabPanel = Ext.create('Ext.tab.Panel', { …
Roberto Schuster
  • 293
  • 2
  • 5
  • 16
5
votes
2 answers

ExtJs dependency management using RequireJS, LABjs (or similar)

I am trying to find examples of how to wrap ExtJs and ExtJs 'modules' up for use with a javascript dependency framework such as RequireJS or LAB. I am working with a large ExtJs based project and there are many separate module files which are just…
David
  • 8,340
  • 7
  • 49
  • 71
5
votes
3 answers

ExtJS dates and timezones

I have a problem with the Ext Date class seemingly returning the wrong timezone for a parsed date. Using the code below I create a date object for the 24th May, 1966 15:46 BST: date = "1966-05-24T15:46:01+0100"; var pDate = Date.parseDate(date,…
TimS
  • 733
  • 3
  • 10
  • 19
5
votes
3 answers

button tooltip extjs

I have added a button to a tab panel in the center region by calling var add = tabSelection.addButton({ id : 'add', text : 'Add', hidden : true, tooltip : 'Please highlight the correct value and click Add to…
EXTJS newbie
  • 71
  • 1
  • 2
  • 3
5
votes
2 answers

Newbie: What does Ext.decode do?

I have a function: function openOpportunityHome() { showSpinner("Loading.Please wait "); Ext.Ajax.request({ url : contextPath + '/OpportunityTracker.do', method : 'POST', params : { …
SeasonalShot
  • 2,357
  • 3
  • 31
  • 49
5
votes
4 answers

How to get the value of selected displayField in ExtJS Combobox

How to get the value of selected displayField in ExtJS 3.4 ComboBox? getValue() returns valueField, but I need other.
Argnist
  • 535
  • 1
  • 5
  • 18
5
votes
3 answers

Extjs 3.4 checkchange listener not working on Checkcolumn

The checkchange listener for my checkColumn is not working. Any ideas why not? var checked = new Ext.grid.CheckColumn({ header: 'Test', dataIndex: 'condition', renderer: function(v,p,record){ var content = record.data['info']; …
pm13
  • 735
  • 7
  • 23
  • 36
5
votes
5 answers

How to select a combobox value in ExtJs?

I am trying to simply select an item in the dropdown list after it has been loaded into a store. This does not work: Ext.getCmp('ddlModel').setValue(aircraftStore.getAt(0).data.ModelTypeCode); This throws an…
Greg Finzer
  • 6,714
  • 21
  • 80
  • 125
5
votes
1 answer

How can I add labels to either end of a ExtJS Slider control?

I am using ExtJS 3.3 but this might be relevant to other versions as well. I am using a Slider control in an ExtJS-based UI. I have a tooltip set up to show the value as you drag it, as per the "Slider with Tip" example here:…
David
  • 1,940
  • 3
  • 17
  • 30
1 2
3
68 69