1
vote
0answers
114 views

ExtJS 4 MVC accordion with dynamic clickable contents from json

I need up insert/add child panels to an accordion. Each of these child panels should have it's title using 'field' value in the data (see below), and the contents of each child should be (labels or a ...
0
votes
1answer
155 views

Get selected file names in Dataview (extjs)

this.items[0].tpl = Ext.create('Ext.XTemplate', '{[this.tempValue()]}', '<tpl for=".">', '<tpl if="this.temp != title">', '<h3 ...
0
votes
0answers
79 views

Extjs4, remove rows from DataView

All users: dataview containing all users, All Groups: dataview containing all groups, Users in Group: grid containing users of the selected group. I can drag and drop users from All Users to All ...
-2
votes
1answer
206 views

jQuery animated dataview sorter

Does anyone know a dataview sorter in jQuery similar to this one (built with extjs) http://docs.sencha.com/ext-js/4-1/#!/example/view/animated-dataview.html ?
1
vote
3answers
888 views

search field in a dataview in extjs

Am trying to put a search field with respect to a data view. There is a toolbar on top of the data view, which consists of a text field. On entering some text in the field, i want to call a search ...
1
vote
1answer
674 views

How can i handle mouseclicks of items inside a dataview

each item in my dataview has a text and a div which represents a button. The button is only shown when the mouse is over the item. How can i handle a mouseclick on the button-div? What i have so far ...
0
votes
1answer
504 views

Extjs4 Dataview disable key navigation

I am using "Ext.view.ViewView" for menu. We can select menu item by arrow keys as default feature in extjs "dataview". But i need to menu item select only by click. Is there are any way to enable ...
0
votes
1answer
486 views

How to render a tpl of a dataview with an external store?

I am struggling with my view that i load with a store inside my page using a proxy, and its work perfectly. But as soon as I load the same dataview with the same srore but an extern one, it doesn't ...
0
votes
1answer
2k views

Extjs4 Ext.view.View selectionchange event trigger twise when select item

I am using Ext.view.View for my data view. When I select one item 'selectionchange' event trigger twice. But without "multiSelect:true" it only trigger once. Ext.define('myViewView', { extend: ...
1
vote
2answers
3k views

Extjs DataView to display tooltips

I am using Extjs DataView for my image gallery. This is my way for item tooltip.its in tpl. new Ext.XTemplate( '<tpl for=".">', '<div class="thumb-wrap" data-qtip="{shortname}" >', ...
1
vote
1answer
1k views

Extjs 4 combobox with dataview using tpl

I am using extjs 4 with rails 3. I have a form containing a combobox and a dataview. On selection of any item of combobox, an image should be displayed in the dataview from the database. I tried using ...