Search Type: Posts; User: vela1606
Search: Search took 0.02 seconds.
-
11 Apr 2013 10:04 AM
- Replies
- 4
- Views
- 261
To give you a bit of background...
We are developing MatchaConnect a microORM for sencha that uses the existing Sencha Models and Ext.Direct to manage the database structure and all the CRUD... -
11 Apr 2013 9:40 AM
- Replies
- 4
- Views
- 261
You are right... but what I am saying is if remoteFilter = true, the request should be:
[{"property":"name","operator":"=","value":"Lisa"}]
This way you can use the server side code to... -
10 Apr 2013 3:38 PM
- Replies
- 4
- Views
- 261
I not sure if this is a bug or working as intended, but I think the store should send the filter operator if remoteFilter is true. This way you can correctly filter using your server code.
here is... -
4 Mar 2013 2:33 PM
- Replies
- 2
- Views
- 477
I would love to have this plugin fully supported. Currently I am using 'dataview' to achieve this.
42192 -
30 Dec 2012 6:31 AM
Jump to post Thread: paging toolbar page not updating by vela1606
- Replies
- 6
- Views
- 469
is your totalProperty correct?
{
"success": true,
"results": 2000, <-------// this
"rows": [ // ***Note:** this must be an Array
{ "id": 1,... -
13 Nov 2012 9:03 PM
- Replies
- 2
- Views
- 246
This in my .htaccess did the trick :-) Thank you
I've been using Ext.Direct for this app http://gaiaehr.org/demo/ (user: admin | password: pass) and with Ext.Direct now in Touch, a mobile... -
11 Nov 2012 8:24 PM
- Replies
- 2
- Views
- 246
Can "Ext.Direct" be use on a Sencha Touch App running natively? Or only "JsonP" can be used?
-
6 Jun 2012 5:25 AM
Jump to post Thread: Create data.store with params by vela1606
- Replies
- 5
- Views
- 590
$data = json_decode($_REQUEST, true)
then to use "data 1" do $data['1']
to use "data Testtraeger" do $data['Testtraeger']
to use "data Vornat" do $data['Vornat'] -
6 Jun 2012 5:10 AM
Jump to post Thread: Create data.store with params by vela1606
- Replies
- 5
- Views
- 590
sorry, don't understand what you are trying to achieve.
is your code open source? can you post more of your code? or a link to a repository?
are you using php function json_decode? -
5 Jun 2012 4:57 AM
Jump to post Thread: Create data.store with params by vela1606
- Replies
- 5
- Views
- 590
use the proxy extraParams property. like this....
proxy : {
type: 'ajax',
url: 'includes/konto.php'
extraParams: {
data: records[0].data
} -
5 Jun 2012 3:12 AM
Jump to post Thread: Grid content won't display by vela1606
- Replies
- 9
- Views
- 686
Try this...
Ext.define('PMD.view.MyProjectsDlg', {
extend: 'Ext.window.Window',
height: 370,
width: 638,
title: 'My Projects',
layout: 'fit', -
4 Jun 2012 1:20 PM
Jump to post Thread: Multicell selection mode on grid by vela1606
- Replies
- 5
- Views
- 1,689
Love IT! nice job... i'll be using this one :-)
-
4 Jun 2012 1:17 PM
Jump to post Thread: drag and drop implementation by vela1606
- Replies
- 2
- Views
- 556
post your code
-
4 Jun 2012 1:15 PM
Jump to post Thread: Any other way than show/hide? by vela1606
- Replies
- 3
- Views
- 770
this looks a bit cleaner :-)
init: function() {
this.control({
'#mindControl' : {
click: function() {
var hidden =... -
4 Jun 2012 1:05 PM
- Replies
- 4
- Views
- 707
when you reload the store the grid should refresh with the new data.
I think the error is
listeners: {
select: function(combo, value,index){
url: 'viewfaqcategorywise.action'... -
4 Jun 2012 12:48 PM
Jump to post Thread: Removing border from tabpanel by vela1606
- Replies
- 8
- Views
- 2,405
add this... you have to remove the child panels border too
border:false,
defaults:{
border:false,
layout:'fit'
}, -
4 Jun 2012 12:40 PM
Jump to post Thread: align button in form by vela1606
- Replies
- 3
- Views
- 748
Scott is right... add between '->' the first button and the second.
If the button you already have is not docked to the panel (looks that way) adding "buttons" to the panel is you best option
... -
4 Jun 2012 12:13 PM
Jump to post Thread: Grid content won't display by vela1606
- Replies
- 9
- Views
- 686
layout : 'fit' to the window should do the trick if the height is the issue
-
3 May 2012 1:34 PM
Jump to post Thread: ExtJS4 MVC application skel by vela1606
- Replies
- 3
- Views
- 3,116
Hi there,
If you don't mind me asking, What kind of application are you working on?
I am building an Open Source Electronic Medical Record. Is not using MVC but you can prob get a lot of ideas... -
3 May 2012 12:08 PM
Jump to post Thread: Ext.ux.grid.FormRowEditing by vela1606
- Replies
- 1
- Views
- 574
Ext.ux.grid.FormRowEditing - basically allow you to edit records inside the grid (just like the row editing plugin) using custom form items (fields). In fact, FormRowEditing is a modified version of...
-
3 May 2012 11:48 AM
- Replies
- 3
- Views
- 1,357
ok here is the github repo...
https://github.com/Certun/Ext.ux.grid.FormRowEditing -
3 May 2012 11:18 AM
- Replies
- 3
- Views
- 1,357
this is what you need?
http://youtu.be/9fxb-gbi9d8
if so, here is the code... I created this few weeks ago. It is a modified version of the Row Editing Plugin... -
17 Apr 2012 7:43 AM
- Replies
- 1
- Views
- 633
Lines are losing custom styles when you try to redraw().
here is a video
http://youtu.be/Gua0GSzcxds
{ -
15 Apr 2012 11:05 AM
- Replies
- 1
- Views
- 334
The Area chart is not showing along the Y axis (date field) ... I can see in firebug is the X axis is OK.
I am using the same data for the Lines and the Area. So the data model is ok.
The issue is... -
19 Mar 2012 2:26 AM
Jump to post Thread: Fieldset height 100% by vela1606
- Replies
- 8
- Views
- 1,584
you can archive the same results using hbox and vbox try using that
Results 1 to 25 of 63
