extjs

Ext JS Problem with MultiGroupingStore/MultiGoupingView user extensions

Hello all, I am facing an issue with the MultiGroupingView extension that is used to get more than one level of grouping on grid data...I am using the version posted on this thread. the thing is, whenever i move the mouse over any row on the resulting grid, this error occurs on FireBug: gs[i].id.split("gp-")[1] is undefined Line 4...

ExtJS - GridPanel with Ext.ux.grid.FilterRow and Ext.PagingToolbar

Hello, I've add "FilterRow" plugin to a GridPanel with PagingToolBar. The Grid works good except for this issue: if I try to sort or filter a column the grid generate this POST variables --> sort, dir and all my filters enabled. Instead if I try to go to next page this POST variables --> sort, dir, start, limit. If I try to scroll pages...

ExtJS.grid.CRUD

I'm studying ExtJS. I'm trying to make a table with CRUD. This is an example of my code. Ext.onReady(function(){ var writer = new Ext.data.JsonWriter({ encode: true, writeAllFields: false }); var proxy = new Ext.data.HttpProxy({ api: { read : 'read', create : '...

Extjs remote combo validation issue

HI, i am using extjs 3.2.1 lib and iam new to extjs, I have implemented combobox with remote with filtering option in the form, i have added forceSelection(true) property to combo for validate the text with store collection and allowblank(false) to combo for enable form save button . My problem is forceSelection property validates...

ExtJS and Toolbar with many buttons

I have GridPanel with toolbar on it with many buttons. All buttons can't stand in one row so extjs show arrow to view those. If I click tool button which is initially hidden nothing happens. On monitor with higher resolution same button is visible and click works. I didn't manage to find nothing on the topic (it is obviously a bug). D...

Select Style attribute using ExtJS on IE7 not working

A very stripped down example here. Code: function changeBackground() { var testDiv = Ext.get("test"); var allStyleDivs = testDiv.select("*[style*='background-color'], *[style*='BACKGROUND-COLOR']"); allStyleDivs.each(replaceBackground); } function replaceBackground(element) { element.setStyle('background-color','blue'); } In...

How to make ExtJs DatePicker in my MVC site ?

Hi. I need a datepicker widget via ExtJs on my pages that works like this. All I found in ExtJs are DatePicker and This sample with pickers The problem is that standart DatePicker looks like just a huge calendar with "today" button. The sample gives picker that looks like i want(textbox field and calendar on demand) but it works in ...

Can extjs submit updated xml as xml?

Hi there, What I want to do is to display an editable xml grid with extjs, update records and submit to the server the updated xml. Is this posible? Regards, Pedro ...

Sencha Touch do not set scale and allow scrolling and resize on iPhone or iPad

I am playing around with Sencha Touch, especially with examples like http://dev.sencha.com/deploy/touch/examples/ However I am faced with a problem, when using the component the scale is set on the iPhone and the user cannot scroll the page or zoom in or out. How may I disable these settings as I would like to have the carousel on a pa...

Can't access ExtJS radio button on form

So I have an .aspx page. In this grid I'm adding a bunch of controls. The first control however is an ExtObject, not one of our preset VB.NET controls. When I go to access the value on the backend for this field with this code: form.AndOr.getValue() It doesn't work. I really have no idea what is wrong. Basically, the radio button valu...

UPDATE row in grid in extjs 3

hi everyone I have a form and below that a grid. When a add some data in form and click "Insert", it inserts data in grid. When i double click on grid all the data from grid fills up in form. I then change the data. (similar to Ext.data.DataWriter Example) The problem is I am not able to "UPDATE" row in grid. I am not using datawriter ...

RIA using Flash or Silverlight vs JS framework

In creating a RIA, what are the advantages and disadvantages of each approach? ...

EXTJS + Updating a store with the database ID after saving a grid

Hi, I'm trying to learn how to use the EXTJS grids for some simple CRUD operations over a table in a admin app. I have a simple grid that allows someone to edit users, the store is defined as: var userDataStore = new Ext.data.Store({ id: 'userDataStore', autoSave: false, batch: true, ...

How to add a widget to an EXTJS application ?

Hello, I downloaded a file upload widget for EXTJS and I don't know how to add it to use it in my project The folder "UploadDialog" contains : -A CSS folder : "css" -An images folder : "images" -A locale folder : "locale" -Two javascript files : "Ext.ux.UploadDialog.js" and "Ext.ux.UploadDialog.packed.js" How to do please T...

EXTJS & PHP Upload file

Hello, I use the UploadFile example in EXTJS (http://dev.sencha.com/deploy/dev/examples/form/file-upload.html) but I don't know what to write in the server side to save the uploaded file (in php) help me please My client side code is : var fp = new Ext.FormPanel({ //renderTo: 'fi-form', fileUpload: true, width: 500, frame: true, titl...

cakePHP + extjs row editor and REST

I've implemented REST routing in cakePHP to properly route REST style requests to the proper methods in my controller. This is what I've added to my routes.php Router::mapResources(array('object_fields')); This properly routes the REST requests to my index/add/edit/delete methods inside my controller. In my EXTJS grid I am using the...

EXTJS Find the parent of a node

Hi all, I need to be able to find a parent of a select node in a tree, however, whenever i use ParentNode it always comes up as 'undefined' (and i am not selecting the root). Anybody know a good way to find the parent of a node? Thanks ...

Loading content dynamically (panels) in an Ext Js Viewport

Well basically im looking on this problem, i have many components with dinamic stuff that is written in the server side with PHP. Depending on the user my components will change, based on the role of the user. So i need to know any ways/examples/info on how to do this. 1- I used the load function EXTJS has, but it clearly says i won...

Export to csv ExtJS

I'm trying to export data to csv format. I use ExtJS 3.2.1 The code is as follows: this.getEl (). child ('a', true). href = 'data: text / csv; filename = datos.csv; charset = UTF-8 2CPrice% Company% 2CChange% 2C% 25% 20Change% 2CLast% 20Updated% 0d% 0a3m% 20Co, 71.72,0.02,0.03, Wed% 20Sep% 2001% 202010% 2000% 3A00% 3A00% 20GMT% 2B0200% ...

[ExtJs] Panels with synchronized height

Hi! I have a panel with layout='column' and several (say, three) panels within it. All panels are displayed in one line. Height of inner panels depends on their content and in general may vary. I'd like to set autoHeight to true in the inner panels for them to reflect content's height. But also I'd like the heights of all inner panels ...