gridpanel Questions
5
Solved
I want to retrieve the content of one specific cell in a Gridpane. I have put buttons in the cells with the
setConstraints(btt , 0 ,1 )
setConstraints(btt , 0 ,2 )
getChildren().add....
In m...
5
I'm trying to make a simple game (it is a school work) in JavaFX and I am trying to clear the panel with the board, and then just repaint it. I have tried a lot of methods, and this one is the only...
2
Solved
I have a list of grids that can change their data in form by end-user.
Finally, I want to sync all the grids by clicking the button, then an operation is performed.
I wrote the code below:
$.when...
Agave asked 15/9, 2018 at 10:32
3
Solved
I have a GridPane filled with 1-letter-labels.
Here is an image:
Here is the code:
int charSpacing = 1;
int charsInWidth = 28;
int charsInHeight = 16;
double charWidth = 15;
double charHeigh...
Ethnomusicology asked 10/10, 2012 at 9:25
3
Solved
I am extending GridPanel with Ext.define() (Ext v4).
I need to get the row data when a grid row is double clicked. At this point I cannot even get the event listener working:
Ext.define('Applicat...
Ahimsa asked 22/4, 2011 at 2:3
5
I have a simple GridPane showing a couple of labels and a button, but I cannot seem to get it to fit the parent StackPane. How would I go forth and make it so that it fills whatever container it is...
Attaboy asked 7/2, 2013 at 14:42
5
Solved
Before the MVC pattern I would include UX classes simply by including this at the top of the JS, before Ext.onReady:
Ext.Loader.setConfig({enabled: true});
Ext.Loader.setPath('Ext.ux', 'extjs/exam...
1
Solved
in border layout panel , the grid's scroll-bar doesn't work correctly even though the store of grid is long enough to make the grid overflow!
if my grid is in none border layout panel , the scroll...
5
Solved
I am placing Ext JS Grid Panel in a iFrame. Do anybody know how can I place it in the center of the iFrame.
Currently It look like this -
I want it to be like this -
0
We're using ExtJS 4.2 and ran into weird problem.
There's a grouped grid panel from which we drag elements to a tree panel. In most cases everything is working fine, but sometimes for unknown reaso...
Jugate asked 22/11, 2013 at 9:35
4
Scenario
I want to update the column data of particular record in grid having store with static data.
Here is my store:
extend : 'Ext.data.Store',
model : 'MyModel',
autoLoad:true,
proxy: {
typ...
1
I'm facing a bit of weird layout behaviour when using GirdPanes in JavaFX 2. While it usually seems to spread horizontal space evenly between multiple fields, it doesn't do so in some other cases. ...
2
Solved
I have four RadioButtons in a grid panel, but when I do this:
<GroupBox x:Name="radioButtons">
<RadioButton Content="1" Height="16" HorizontalAlignment="Left" Margin="10,45,0,0" Name="st...
Sfumato asked 16/4, 2013 at 12:0
2
Solved
I'm trying to make a Dynamic Grid class (where I do not know any information about the columns but they are given from the json response and the gird prepares itself accordingly). Here I have found...
Destructive asked 12/6, 2012 at 8:33
2
I've a GridPanel which is updated every 10 seconds.
var refreshEnvironmentsStoreTask = {
run: function() {
this.getEnvironmentsStore().load()
},
scope: this,
interval: 10000 //10 second
}
Ext...
2
Solved
I did successfully add a row double click event listener to my grid by:
listeners : {
itemdblclick: function(dv, record, item, index, e) {
alert('working');
}
},
Now, I need to get the exact ...
Ezequieleziechiele asked 10/12, 2012 at 6:10
1
Solved
Following is my code to show a grid panel with total cost summary. I want to show another summary row with average. So any help?
Ext.require(['Ext.data.*', 'Ext.grid.*']);
Ext.onReady(function(...
3
Solved
I've got an ExtJS (4.0.7) GridPanel that I'm populating from a store. The values that I display in the GridPanel's column need to have a different view depending on the type of data that's in the r...
Buttonhole asked 4/7, 2012 at 5:43
2
I have a strange issue with an Array fed ExtJS gridPanel - in IE7 only, before the rowclick event is fired, when I click on a row, the page scrolls up 2-3 rows. On repeated clicks, the page scrolls...
Barrows asked 13/5, 2011 at 15:43
2
Solved
How to get the Backgroud or text colour of first five rows to be different from the next five rows.
For example, First 5 Yellow,5 Orange,5 Yellow,5 Orange,and so on..
I added following listener f...
1
Solved
Hii howto override itemclick in gridpanel on ExtJS4 ? I have gridpanel with alias tableA like this :
Ext.define('AM.test.TableA', {
extend: 'Ext.grid.Panel',
alias: 'widget.tableA',
initCompon...
Madisonmadlen asked 11/10, 2011 at 18:16
1
Solved
I want to add a button to the right hand side of my gridpanel header but can't find anyway of doing so.
I don't want to add a toolbar since it's only 1 button I want to add.
Danille asked 14/9, 2011 at 8:45
2
Solved
We have an ExtJS Grid Panel that has grown to include too many columns (imo), so I am looking into enfolding some data into "sub-rows" of the main row. Like:
Data1 | Data2 | Data3 | Data4 | Data5
...
1
Solved
I have a paged GridPanel and don't know how to go about adding server side sorting. Do I add a listener for the sortChange() event? Do I override it? Or is there another event that I should work wi...
Footplate asked 24/3, 2011 at 15:39
3
How can I change the row colour in datagrid based upon the severity condition? I'm new to this EXTJS topic. I used to reader to read, store to store and writer to write the data. After fetching all...
1 Next >
© 2022 - 2024 — McMap. All rights reserved.