Ext JS 3 is the third major version of JavaScript library for building Rich Internet Applications (RIA).
0
votes
0answers
6 views
Show Tooltip in textfield on focus, Ext JS 3.4
I have to show a tooltip with xtemplate on focus event of a textfield
I have tried the following code,
var tf = new Ext.form.TextField({
name: 'name',
...
0
votes
0answers
7 views
Pass this as argument to a event handler in javascript
In my project, i see a piece of extjs 3.4 code like this:
this.mon(parentform, EVENT_NAME,
this.functionName, `this`);
My question is with the last argument this. If we don't pass anything, the ...
0
votes
1answer
24 views
Ext JS Display Field in Combo Box's Tooltip
I'm trying to create an override to display a tooltip when the user hovers over a combo list item. My override looks like this:
Ext.override(Ext.form.ComboBox, {
tpl: '<tpl for=".">',
...
0
votes
1answer
16 views
add custom Html attribute in extjs 3.3
For example, a simple ExtJS TextField generates HTML like below,
<INPUT type=text name="txtNAME1" id="txtNAME1">
To this I want to add my own attribute (DisplayName) as below,
<INPUT ...
0
votes
0answers
15 views
extjs ux lovcombo stops working when selected item contains two asterisks
extjs 3.4 ux lovcombo stops working when data in dropdown contains two asterisks
In a lovcombo dropdown, when the item contains 2 stars (e.g. **), it causes the dropdown to not work once that item ...
0
votes
2answers
20 views
How to render something above Ext.Viewport
I have viewport:
new Ext.Viewport({
layout:'fit',
hideBorders:true,
items:[panel1,panel2,panel3],
});
Now i want to show combobox above viewport:
var myCombo= new Ext.ComboBox({
...
0
votes
0answers
22 views
ExtJS XML Reader not loading data
My code is not showing any error, my php file is responding also(firebug reports that). But the grid is not showing any data. I was trying to get help from ...
0
votes
1answer
35 views
Unable to get form(xtype: form) reference in extjs3
I'm using extjs3.4 version, Here im unable to get the direct form reference in controller.
task.MgmtContainerUi = Ext.extend(Ext.Panel, {
title: 'My Panel'
,width: 834
,height: 443
...
0
votes
2answers
40 views
eXTjS 3.3.1 LiveGrid store.each gives only buffered rows
I use ExtJs 3.3.1 because many extensions don't work under 4.xx
One of these extensions is LiveGrid.
I can't try but i suppose a simmilar thing happens with a 4.x buffered grid.
When i do a report of ...
0
votes
0answers
26 views
Error with IE using ExtJs with Fusioncharts
I've upgraded my project from ExtJs 3.2 to 3.4 and now IE 8/9/10 can not render the charts created by Fusioncharts. Everything works just fine on Firefox and Chrome. Upgrading was the only change made ...
0
votes
2answers
35 views
How to get `:after` to work in extjs iconCls?
My css for a tree node icon is the following:
.icon {
background: url(http://dummyimage.com/100x100/ccc/fff);
width: 100px;
height: 100px;
position: relative;
}
.icon:after {
...
0
votes
2answers
27 views
allig center a button in ExtJS
var myWin = new Ext.Window({
height : 100,
width : 200,
maximizable : true,
items : [ {
xtype : 'button',
text : 'myButton'
// allign : ...
0
votes
0answers
77 views
Extjs Range/double slider
I am trying to implement a slider with two thumbs. Each thumb can be moved on the scale and the whole range/window should also be movable so that user can filter data with a specific range. Something ...
0
votes
3answers
89 views
Ext.data.Store getTotalCount alway returns 0
I have a problem getting total number of features (land parcels) from GeoExt.data.FeatureStore/Ext.data.Store which is populated from JSON retrieved using PHP. Total number is used as a condition to ...
0
votes
0answers
28 views
Add multiple plugins or adding plugin dynamically
Using Extjs 3.4
I am trying to add two plugins in a grid panel and code snipet goes on like this:
var grid = Ext.grid.GridPanel({
...
plugins : [plugin1, plugin2],
...
});
As it is giving error i ...
0
votes
1answer
41 views
ExtJS 3.4 - How to “grey” the emptyText in DateField
I encountered a problem in showing a datefield emptyText ("YYY-MM-DD") in grey color instead of black color.
Here is my code.
Style
.emptyText {
color: grey;
}
Script
items :
[
{
...
1
vote
2answers
79 views
ExtJs window dont show
I have a toggle button:
var button = new Ext.Button({
tooltip: "Интенсивность",
iconCls: "gxp-icon-intensity",
enableToggle:true,
toggleHandler: function ...
0
votes
2answers
92 views
ExtJs datepicker listener
I have datefield on my form:
var intForm = new Ext.FormPanel({
width: 350,
autoHeight: true,
bodyStyle: 'padding: 10px 10px 10px 10px;',
labelWidth: 70,
...
0
votes
1answer
30 views
How to check given store isempty in ExtJS3
I have store('mystore') i want to check given store is empty or not
please help to me I'm very new to ExtJs. I read ExtJsAPI but i can't find solution
if(isempty(mystore)){
do something....
}
0
votes
0answers
29 views
Extjs 3.3.0 special form layout needed
I am trying to achieve the following form layout with ExtJS 3.3.0 but am unable to do so.
(Dont mind that it is Hebrew, I will take care of that...)
As you can see the form has a text box and ...
1
vote
1answer
168 views
How do I programmatically hide Tab in the TabPanel(ExtJs 3)
This my TabPanel code:
inside the code there is two tabs (tab1 and tab2) in the TabPanel (tabs_panel)
MyTabPanelUi = Ext.extend(Ext.TabPanel, {
activeTab: 0,
height: 210,
resizeTabs: ...
0
votes
0answers
60 views
Pagination for dynamic store in extjs 3.2
Can any one suggest on how can we do pagination when data is added dynamically in extjs store.
Results from the server is xml content and below code dynamically adds the data in the store. But this ...
0
votes
1answer
81 views
Tree drag drop with copy or move icon
I have a tree, with dragdrop.
enableDD: true,
ddAppendOnly: true,
And I can copy or move nodes by pressing spec key on keyboard.
this.on('beforenodedrop', function (e) {
...
0
votes
1answer
50 views
How to determine what cell has been clicked?
I am new to JavaScript and I am having to use ExtJS 3.4. I have created a simple tree with 3 columns. I would like to know either what cell was selected, or even, just what row and column were ...
0
votes
2answers
106 views
extjs 3.4 ComboBox send wrong data type
this is the problem.
I have a store in which I have a fiels without typization named al_key
The al_key actually comes as an int from the server
{ al_key: 5512, description: "test"}
I load those ...
0
votes
0answers
213 views
Extjs: Grid not loading in IE10 in compatibility view
My below code is the one that`s stopping from loading extjs grid, same works in other browers but in IE10 that compatibility mode not working.
//EXTJS 3.2 Code
<script language = ...
0
votes
0answers
22 views
Axis label in Ext flot
I am using Ext Flot in my application, my code is below which draws line chart. How can I put axis labels?
var myGraph = new Ext.Panel({
header : false,
...
0
votes
2answers
128 views
Ext.tabPanel maximize vertical height
I'm new to Ext JS. I have a problem with height of Ext.tabPanel.
My Ext JS code:
HTML Code:
<div id="TabPanel"></div>
<script type="text/javascript">
Ext.onReady(function () {
var ...
0
votes
1answer
162 views
ExtJS Split button in grid cell
I want to use split button in grid cell. I define renderer for cell, but I can't put extjs component in grid cell. Can anyone help?
Split button: ...
0
votes
2answers
163 views
what is extjs data store in root parameter
I don't have clear idea about extjs 'root' parameter in data store.
var xxx = new Ext.data.JsonStore
({
autoLoad: true,
url: 'www.dataserver.com',
root: ...
0
votes
0answers
22 views
Exjts Designer setting the viewConfig
i am using extjs (designer) v. 3.x
in a grid when i set the viewConfig: value it comes out escaped. this is output
viewConfig: 'new Ext.XTemplate(\'<div class="hospital-target">Drop Shipment ...
0
votes
0answers
119 views
Defer empty text in extjs 3.4
I am trying to display empty text when there is no data from the store. Initially just used emptyText config option and deferEmptyText: false. The empty text was displaying properly. It takes some ...
0
votes
1answer
112 views
Extjs 3.2 : Js error in built function “onDocumentReady”
I`m getting js error, after loading below function,
Ext.onReady(function(){
aFunc123([{header:'ss',Fn:'aFunc1(1)'}],"",undefined,{showCheck:true})
})
After coming out of ...
0
votes
1answer
160 views
Extjs LabelAlign=top is not working in panel
I want to display the label on top of text field, but it is not displaying. Below is the code.(in fact the below code displays the label at the right side of text field).I am using extjs 3.4, note : ...
0
votes
3answers
659 views
Load JSON data into a ExtJs Grid
I am new to ExtJs and I am not able to load JSON data into the grid in any form - either inline or from a static JSON data file. Any help is highly appreciated.
Only empty grid shows up - without ...
0
votes
0answers
117 views
Need to understand Extjs Ext.extend [closed]
I am new to Extjs, and would like to understand how to extend the extjs components.
I have seen few samples in internet but I was not able to fully/deeply understand it. I searched in Sencha and ...
0
votes
2answers
291 views
Ext Flot dynamically change chart values
I am using Ext flot for drawing charts on my application. I want to update chart data with ajax request or with a button. I couldn't update values. Anyone have an idea?
var graphDataArr = [{ label: ...
1
vote
2answers
199 views
ExtJS: Editing an entire grid and saving it all at once
I have a requirement to produce a grid where all the rows are in edit mode and values for each row can be saved at once by a single click of a Save button. Is this possible? If so, what's the best way ...
0
votes
1answer
98 views
EXTJS Combobox : show only NONselected values in dropdownlist for each combo-selection
i have an combobox in a gridcolumn and the requirment is to show only nonselected values in the dropdown list for the next combo selection
0
votes
1answer
156 views
titleCollapse in TabPanel in extjs 3.4
In ExtJS 3.4, TabPanel, for implementing collapsible:true and titleCollapse:true, enables collapse and expand of the TabPanel. However, even when click on tabs also results in collapse / expand.
How ...
0
votes
0answers
63 views
Ext: Ext.isReady returns false in IE10
In IE10, in compatibility mode,Ext.isReady returns false. And not calling inside functions. What's wrong? Please some help me. I'm using Windows7, IE10 and ext js version 3.2.
0
votes
2answers
65 views
I am trying to write a simple Web App for guitar teachers using PHP, mySQL, and EXTjs
I am working on a project for school/myself. This is the project description...
"I am thinking of starting a guitar teaching business and would like to create a web app that would enable me to keep ...
1
vote
1answer
84 views
How to add border for Container in ExtJS
I have Container look like below. I want to add border for this Container like text box border please help to add border for the Container.
MyContainer13Ui = Ext.extend(Ext.Container, {
flex: 1,
...
0
votes
2answers
126 views
How to change html value and listeners configure in EXTJS BoxComponent
My BoxComponent look like below
this.terms = new Ext.BoxComponent({
id: 'register_isv_terms_linkbox',
itemId: 'register_isv_terms_link',
autoEl: {
id: ...
1
vote
1answer
29 views
Why does Ext flash component concatenate two strings to form this url?
I found this in the FlashComponent source code and was wondering why they broke up the string at //. Here's the code:
/**
* Sets the url for installing flash if it doesn't exist. This should be set ...
1
vote
0answers
266 views
TreePanel not expanding ExtJS 3
This is my code -
var myTree = {
containerScroll: "true",
width: 500,
root: new Ext.tree.AsyncTreeNode({
id: "source",
text: "Root",
expanded: true,
...
0
votes
0answers
91 views
How to create dynamically url in extjs 3
I have a Boxcomponent. My Boxcomponent looks like this:
this.terms = new Ext.BoxComponent({
id: 'register_isv_terms_linkbox',
itemId: 'register_isv_terms_link',
autoEl: {
...
0
votes
1answer
103 views
text box value view as url in ext js 3
I have ExtJs text box. I want to view text box value as URL. but url view as pain text. I want to view url inside the text box. my text filed is below
MyTextField3Ui = Ext.extend(Ext.form.TextField, ...
1
vote
0answers
239 views
Extjs 3 - Grid grouping with a checkbox
I have a grid configured with a GroupingStore, GroupingView and a CheckColumn that displays grouping data using extjs 3.The data that I display in grid is list of students as rows and subjects as ...
0
votes
2answers
509 views
ExtJS file upload field don't show correctly
I am using ExtJS 3.4 and I want to use fileupload in my application. My code and fileupload field screen shot are shown below. There is a problem about showing fileupload field, I couldn't solve this ...




