Questions tagged [extjs4.2]

Warning: only use this tag along with the generic extjs tag. Otherwise your question will not be seen by the many thousands following extjs

See for more information.

1554 questions
0
votes
2 answers

Ext.getStore() shortcut?

Is there a known shortcut to reference stores in the code? I have been using Ext.getStore('MyStore') all the time, but now realized that it's not the best practice as when the store's ID is changed you have to dig thru your code renaming every…
Geo
  • 12,666
  • 4
  • 40
  • 55
0
votes
2 answers

xtype: filefield not displaying properly

i had a popup that looks like this : items : [{ xtype: 'form', title: 'Upload a Photo', width: 400, bodyPadding: 10, frame: false, renderTo: Ext.getBody(), items: [{ xtype: 'filefield', name: 'photo', …
tonyo
  • 678
  • 1
  • 7
  • 22
0
votes
2 answers

Maximize, minimize extjs panel

How can we add maximize and minimize in the panel of EXTJS 4 portal example: http://docs.sencha.com/extjs/4.2.1/extjs-build/examples/portal/portal.html Fully working code: Ext.define('Ext.app.Portal', { extend: 'Ext.container.Viewport', …
Rakesh Goyal
  • 3,117
  • 8
  • 39
  • 69
0
votes
2 answers

How to insert a toolbar to the panel that I have been created? Extjs

I'm new in extjs. Currently a panel have been created and set to north region. Ext.create('Ext.panel.Panel', { layout: { type: 'border' …
user1348226
  • 41
  • 1
  • 10
0
votes
1 answer

Bring extjs form field to front

I have the following situation: A form with 3 fields where a field's top-margin is -1 and bottom margin is 0. Therefore, there is only a single pixel of border between the fields (since the border is 1px). The border color changes upon selection but…
ziGi
  • 828
  • 8
  • 28
0
votes
1 answer

ExtJS - beforeedit on a Ext.grid.Panel not in API

This is not a problem, but rather a question that came into my mind. Me along with my friend were trying to disable RowEditing when a user doubleclicks a record/cell in the Ext.panel.Grid ( depending on some criteria ). I was looking into the API…
rajugaadu
  • 686
  • 2
  • 17
  • 37
0
votes
1 answer

ExtJS - JavaScript assets specified in app.json not being loading?

I have the following references in my app.json file "js": [ { "path": "https://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js", "remote": true }, {"path": "resources/debug.js"}, {"path":…
Trevor
  • 13,085
  • 13
  • 76
  • 99
0
votes
1 answer

Load new panel.Panel when click on items in tree.Panel

I'm new in ExtJS I need load new panel every time when I click on item in tree.Panel Here is my code creating new panel (by default) var contentPanel = Ext.create('Ext.panel.Panel', { id: 'content-panel', region: 'center', …
Winston
  • 1,758
  • 2
  • 17
  • 29
0
votes
2 answers

Extjs 4.2, how to I create a frame around the panel body with rounded corners

I would like to remove a panel frame and place it on the panel body only, the effect should look like this: ( the header has no border or background and the panel body has rounded corners.) here is what I have tried: Ext.define('SomePanel', { …
AMember
  • 3,037
  • 2
  • 33
  • 64
0
votes
1 answer

ExtJS - Ajax Call Added to Store From Service Call

I am new to ExtJS and I am a Flex Developer. I am trying to do a mockup of a page we have in our Flex App. I am trying to do a basic service call to hit our servers (on same domain as the ExtJS App) and add the data into Store, which will then be…
anad2312
  • 787
  • 2
  • 8
  • 20
0
votes
1 answer

ExtJs doesn't load data to a form using ext.data.store

i need to load the data from a json object in to the form panel when the form is loaded my code is like this this is my data model Ext.define('Contact', { extend : 'Ext.data.Model', fields : [ { name : 'first', mapping : 'name.first' }, { …
user2567005
  • 271
  • 1
  • 13
  • 27
0
votes
1 answer

How to show menu or popup above barchart of on item click of each bar in extjs4.1

Can anybody tell How to show menu or popup above barchart of on item click of each bar in extjs4.1 Thanks
mohan
  • 13,035
  • 29
  • 108
  • 178
0
votes
1 answer

How to align combo box horizontal in extjs4.1

Can anybody tell How to align combo box horizontal in extjs4.1 e.g combo1 combo2 combo3 combo4 combo5 combo6 Thanks
mohan
  • 13,035
  • 29
  • 108
  • 178
0
votes
1 answer

Two Grids on Same Page Extjs 4

I am using this Ext.define('Wifi.view.widget', { extend: 'Ext.grid.Panel', xtype: 'customerlist', selModel: { selType: 'cellmodel' }, height: 380, width: 700, viewConfig: { stripeRows: true }, …
Rakesh Goyal
  • 3,117
  • 8
  • 39
  • 69
0
votes
1 answer

How to overvrite maxColWidth in HeaderResize?

There is a value in Ext.grid.plugin.HeaderResize set to 1000. It prevents pulling the column larger. How can I fix this?