The gridpanel tag has no wiki summary.
5
votes
2answers
634 views
Extjs multiple inheritance?
I have a question regarding multiple inheritance in ExtJS. While I know I can simply duplicate the code to make it happens, but I want to know if there is any way to code it more efficiently.
I have ...
4
votes
1answer
353 views
Gridpanel lost filter while paging
I have a jsonStore bound to gridpanel with paging toolbar and some custom filter. But everytime when I use paging all filtersettings get lost. How can I keep them?
4
votes
1answer
1k views
ExtJS DateFormat Issue
I haven't found an existing question on this exact problem (there were several that were similar but did not help).
I have a GridPanel with exam results, including when the exam was complete. The ...
4
votes
2answers
8k views
How to add row double click event listener when extending grid panel with Ext.define()?
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:
...
3
votes
1answer
503 views
ExtJs4, how to edit manually cell datetime with text format (without timefield or datefield) in gridpanel?
With GridPanel in ExtJs4, how to edit cell datetime (without timefield or datefield) ?
I use this for a correct display :
header: 'date_event',
field: {
type: ...
3
votes
1answer
273 views
How to populate Ext.js 4 grid panel cell after selecting item from autocomplete?
I am a bit uncertain about how to do the following:
I've got a grid panel and on one of the fields, I've got an autocomplete and this part of my application is working fine.
What I would like to ...
2
votes
0answers
108 views
Assistance needed: Keyboard navigation in ExtJS GridPanel - GroupingView
I'm currently working on converting my public facing ExtJS (actually Ext.NET) app to allow keyboard navigation with clear focus indication. So far I've managed to get a TabPanel, and a basic GridPanel ...
2
votes
2answers
509 views
ExtJS: Ext.grid.Panel: how to keep sort order after store.sync()?
I have a nice working Ext.grid.Panel, with column headers you can click on to "automatic" sort.
The store has "autoSync: true".
I have a button "new", when the user clicks on it, it creates an empty ...
2
votes
1answer
524 views
How to add color picker in a row of Ext.grid.GridPanel
I'd like to use a color picker when I edit some cells in a row of an Ext.grid.GridPanel.
I didn't find any examples from the official Examples or the APIs, could someone give me some example codes for ...
2
votes
1answer
1k views
Ext JS grid panel with checkbox column
I've got a grid in my page with a CheckboxModel set on it. It's showing the names and checkboxes but I don't know how to bind the boolean column from the store to the column from the selection model. ...
2
votes
1answer
424 views
Display problem when using RowEditor extension on an ExtJS GridPanel
I'm using the RowEditor extension to edit a GridPanel. My ExtJS version is 3.3.0. I need some fields to be editable, others not no be edited at all and I do this by ignoring the editor property on ...
2
votes
1answer
351 views
In IE7 the first click on a grid causes an ExtJS Ext.grid.GridPanel to jump to the top of the page
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 up ...
2
votes
2answers
581 views
Cannot load data in an ExtJS gridpanel with loadData()
I need to periodically add new data in the grid's store. The store is defined by the following code:
this.reader = new Ext.data.JsonReader({
idProperty: 'id',
fields: this.lesFields
...
2
votes
1answer
597 views
How to add an item to an ExtJS GridPanel without firing selectionchanged event
I've got an ExtJS interface that addresses a problem I'm sure tons of people have had before. I have a service that exposes a list of items, and I need to show that list in a GridPanel. I have this ...
2
votes
1answer
521 views
Moving controls in a gridpanel with Delphi
In a previous question here I asked about drag n drop within the gridpanel.
Drag N Drop controls in a GridPanel
The question I have next is that I am having weird behavior whenever I try to move ...
1
vote
0answers
83 views
ext.net need help adding 2 radio buttons per cell in a column in a gridpanel
I have a gridpanel (ext.net) where one column has cells with 2 radio buttons and one column has cells that don't have values that are drop downs.
If I add a radio group to cells, they are not ...
1
vote
1answer
63 views
ExtJS: Toggling visibility of GridPanel header at runtime
I have a GridPanel which should load a maximum number of resources.
If there are more resources available, than I want to show, I want to enable the panel's header/title to show some texte like "more ...
1
vote
2answers
157 views
Integrating Ext.grid.panel validation and Ext.data.Model.validations
I've been learning ExtJS4 after having done quite a bit of dev in ExtJS3. I'm quite intrigued by the new class Ext.data.Models, but I would love to integrate these validations with the validation ...
1
vote
1answer
135 views
ExtJS Gridpanel Column width + forcefit
I have a gridpanel that i would like to have 2 columns in. I want the first column to have a width of 100 and the second column to fill the remaining width in the gridpanel.
Any ideas?
EDIT
...
1
vote
1answer
64 views
ImagePanel adaptation in scala
I am starting with the code which was found here and can be seen below:
import swing._
import java.awt.image.BufferedImage ...
1
vote
1answer
244 views
ExtJs loading data
I'm trying to load data from imdb, but i have no results in table (GridPanel).
It's my source code:
...
<body>
<script type="text/javascript">
Ext.onReady(function(){
var store1 = new ...
1
vote
1answer
261 views
Howto override listener in gridpanel on ExtJS4
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',
...
1
vote
1answer
296 views
Add help button to Extjs gridpanel header
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.
1
vote
1answer
589 views
ExtJS4 editable grid getting selected row returns empty
Trying to get the selected row index (and set another field value of the record afterwards) on a grid with CellEditing plugin, but getSelection() method returns an empty array. I have a listener for ...
1
vote
1answer
292 views
Why does this Ext.grid.Panel crash?
This crashes:
var grdMakes = Ext.extend(Ext.grid.Panel, {
constructor: function(paConfig) {
}
}
This does not:
var grdMakes = Ext.extend(Ext.grid.Panel, {
}
The crash is:
Uncaught ...
1
vote
2answers
580 views
How do I perform a refresh of the content of an Ext.NET GridPanel?
I have ext.net GridPanel on the page. GridPanel contains a button. How to force GridPanel refresh after button click?
UPDATE:
protected void btnDelete_Click(object sender, DirectEventArgs e)
{
...
1
vote
2answers
370 views
How do I focus a combo box inside a grid panel?
I've searched high and low and can't find this and all of my methods do not work.
Basically, here is what I have. I have a Grid Panel (using ExtJS 4) that contains many rows. Each row has a column ...
1
vote
3answers
647 views
how to align grid Panel in center
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 -
1
vote
1answer
1k views
How to disable LoadMask on GridPanel
I've a GridPanel which is updated every 10 seconds.
var refreshEnvironmentsStoreTask = {
run: function() {
this.getEnvironmentsStore().load()
},
scope: this,
interval: 10000 ...
1
vote
1answer
561 views
GridPanel as item of tabPanel
I'm having trouble knowing if I syntactically have this setup right. From another thread, I understand to add the GridPanel to the tabBar items, which I do so below. In my App.js, I define a grid ...
1
vote
2answers
716 views
Paging toolbar refresh equivalent
This should be very simple but I don't have any solution yet.
I am using a ExtJs v.3.3.1
I have a grid panel that allows record deletion.
The grid has a paging toolbar that is attached to the panel ...
1
vote
2answers
4k views
ExtJS grid Panel Paging toolbar not showing required number of records per page
I am new to extJS and I am trying to show 8[a random number] records in a grid panel and am also using paging toolbar to show 4 records per page but it shows 8 records in one page only.
var myData = ...
1
vote
2answers
2k views
ExtJS Grid Panel - Multiple “rows” per row?
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
vote
1answer
528 views
Keep displayField on Ext.form.Combobox in EditorGridPanel after selecting item?
I am using an Ext.form.Combobox on a column model editor, and this ColumnModel is put in to an EditorGridPanel. After I select an item in combobox, the text displayed on combobox is always the ...
1
vote
3answers
593 views
Removing headertoolbar of GridPanel in Extjs
I habe a GridPanel in Extjs and i just want to remove or hide its header toolbar. (The toolbar where the title and the searchbox is in). I just want the Gridpanels first element to be the column ...
1
vote
1answer
1k views
Server Side sorting in an ExtJS GridPanel
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 ...
1
vote
1answer
771 views
extjs gridpanel drag and drop feature
Ext.namespace('Moca');
.....
Moca.LaGrid = new Ext.grid.GridPanel({
store : Moca.Stores.LaStore,
ddGroup: 'GridDD',
enableDragDrop: true,
.....
var ddrow = new ...
1
vote
3answers
5k views
How can I change the row colour in datagrid based on severity?
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
vote
1answer
1k views
ExtJS gridPanel is not loading JSON
I was following the tutorial here:
http://www.sencha.com/learn/Tutorial:Grid_PHP_SQL_Part3
But I have not been able to load my gridPanel. I've been struggling with this for quite a while now and I ...
1
vote
1answer
654 views
ExtJS RowEditor How to render all the component validation on load
Hi everyone i got the following issue, i have a GridPanel with a RowEditor Nevertheless it doesnt validate my fields when it renders
But if i focus all my fields to edit and refresh the grid its ...
1
vote
1answer
369 views
Select text on click in EditorGridPanel (gwt-ext)
I have a gwt-ext EditorGridPanel, by clicking onto a cell, you can edit its value. The cursor is placed at the beginnig of the cell, but I want to select the whole text in this cell if the user clicks ...
1
vote
1answer
2k views
ExtJS Grid Paging: next button is disabled!
I created a basic grid that has a paging toolbar. For some reason when I load up at index 0, the Next Page button is disabled, even though the text says "Displaying page 1 of 5". If I choose ...
1
vote
1answer
992 views
ExtJs 3.3 GridPanel not restoring column settings with the Buffering Http Provider anymore
I updated to Ext 3.3 and suddenly my GridPanel's column "width" and "hidden" settings are not restored anymore, they remain at their default settings. I use the most recent version of the Buffering ...
1
vote
3answers
10k views
Extjs gridpanel doesn't expand horizontally within a tabPanel
Each of my 3 Extjs gridpanels do not expand horizontally within a tabPanel.
The each grid's properties:
id: grid_id,
ds: ds,
cm: cm,
loadMask: true,
view: grouping_view,
...
0
votes
1answer
36 views
extjs 4 dynamically enable an actioncolumn item
Using 4.0.6 I have a gridpanel with an actioncolumn that has two items, a delete button and and view button. The delete button is disabled but there are some circumstances where it needs to be enabled ...
0
votes
3answers
75 views
Getting Model from GridPanel in ExtJS
I have a gridpanel that allows inline editing of a column. This column uses a combobox as the editor, and neither the "change" event nor the "select" event give me something usable to backtrace the ...
0
votes
1answer
55 views
How to use Extjs tool tips with title and text when xtype is 'actioncolumn'
how to use Tool tip with both text and title when xtype is actioncolumn in Ext.grid.Panel.
0
votes
1answer
35 views
How to queryBy/filterBy on all page of Grid Store data?
I have a grid panel containing store displayed on many pages (using PagingToolbar).
On the tbar, I put the button to have a query for all data in store according record.get("criterion"). I've tried ...
0
votes
2answers
63 views
WPF Desktop Application layout dilemma
I want to develope my first real WPF Desktop Application. It's quite a lot of time since my last desktop application, which was developed with .NET 2.0 and Windows Forms. Since i have to develope a ...
0
votes
1answer
64 views
How can I perform client side sorting with Ext JS 4?
I have a Grid Panel that loads about 200 records from the server. I can implement a paging bar just fine, so that I load 10 records per page. However, the problem is that when our users click a ...