Search Type: Posts; User: anitacynax
Search: Search took 0.02 seconds.
-
21 Nov 2012 11:55 PM
- Replies
- 5
- Views
- 1,079
Thanks evant. I logged into he support portal but am unable to download Ext JS 4.1.3 - it says "IE cannot download ext-4.1.3.zip from support.sencha.com. The file could not be written to the cache". ...
-
20 Nov 2012 5:11 AM
- Replies
- 5
- Views
- 1,079
I just checked it against ext-4.1-rc3. Now I see the following text/message at the bottom left hand corner of the screen : "Logged Errors: 1 Warnings: 0 Info: 0 Log: 0" (see attached screenshot)....
-
20 Nov 2012 12:14 AM
- Replies
- 10
- Views
- 1,714
I used checkchange and the following line of code in checkchange:
for (var i =0; i < teststore.getCount(); i++) {teststore.getAt(i).set(this.dataIndex, false); record.set(this.dataIndex, true);} ... -
19 Nov 2012 5:06 AM
- Replies
- 5
- Views
- 1,079
I am using Ext 4.0.7 as well and am having the same error. I have 3 checkcolumns, which are in a grid, which in turn is in a fieldset, which in turn is in a formpanel, which in turn is in a window. I...
-
19 Nov 2012 4:18 AM
- Replies
- 10
- Views
- 1,714
Thanks for the reply, Scott. I solved this issue in another way. Thanks though.
-
15 Nov 2012 4:35 AM
- Replies
- 10
- Views
- 1,714
In this case 'return false' in the beforecheckchange function disables ALL the checkboxes in the checkcolumn. What do you do however if you want to enable only ONE checkbox in the checkcolumn (i.e....
-
12 Nov 2012 2:02 AM
- Replies
- 10
- Views
- 1,714
What is the difference between checkchange and beforecheckchange? I am currently using checkchange but do not understand the difference between the two. Thanks.
-
17 Sep 2012 4:08 AM
- Replies
- 2
- Views
- 1,505
I had to do a similar thing with checkboxes in a form. I had a checkboxgroup in which I had a few checkboxes. I created a checkbox called Check All. I then passed the id of each of the checkboxes to...
-
3 Aug 2012 2:16 AM
- Replies
- 11
- Views
- 1,105
Hi Scott, I don't mean to bug you but do you have any tips as to how I can proceed? I read Ext JS in Action where they show how to load data into a form using formpanel.getForm().load() but here data...
-
26 Jul 2012 6:36 AM
- Replies
- 11
- Views
- 1,105
Hi Scott, I will try another zip client. For now I have the following code to try and load the data into the form:
var formpanel = Ext.getCmp('EditUserForm');
formpanel.getForm().load({
... -
26 Jul 2012 3:35 AM
- Replies
- 11
- Views
- 1,105
Thanks Scott for your response. When I try to open the zip files (f185069.zip and
t6775-remote.zip) I get an error ('The compressed folder is invalid or damaged'). Also, I read... -
24 Jul 2012 2:58 AM
- Replies
- 11
- Views
- 1,105
Hi Scott,
Thanks for your response. I am familiar with Ajax requests in Sencha (I used it earlier to delete a user from the database) but I am not sure how to use it when it comes to editing a user... -
23 Jul 2012 4:06 AM
- Replies
- 11
- Views
- 1,105
How exactly would I pass the id and load the record from the table ? I know how to use
var formpanel = Ext.getCmp('EditUserForm'); formpanel.getForm().loadRecord(rec);
but this does not... -
22 Jul 2012 11:10 PM
Jump to post Thread: RenderText/JsonConvert by anitacynax
- Replies
- 3
- Views
- 670
Thanks everyone for your input. This question was perfectly answered here: http://stackoverflow.com/questions/11289915/rendertext-jsonconvert
-
20 Jul 2012 6:43 AM
Jump to post Thread: using Ext.Ajax.request by anitacynax
- Replies
- 6
- Views
- 1,267
Thanks everyone for your input. I found the perfect answer here:
http://stackoverflow.com/questions/11289915/rendertext-jsonconvert
My DeleteUser function code works and is as follows:
... -
20 Jul 2012 5:24 AM
- Replies
- 11
- Views
- 1,105
Previously I had simply recreated an Edit User form in the function EditUser(id) and loaded data via loadRecord(rec). My supervisor, however, told me not to do it that way. So I used...
-
20 Jul 2012 3:54 AM
- Replies
- 11
- Views
- 1,105
I have a grid which displays a list of members. The grid has an actioncolumn called Edit with an icon. If a user clicks on the Edit icon, the window is redirected to another page which contains the...
-
11 Jul 2012 10:46 PM
- Replies
- 5
- Views
- 1,016
CreateUserForm is the ID of a form within a window which is in a file called Edit.vm. I am trying to query the form from within View.vm which is a separate file but in the same folder as Edit.vm...
-
9 Jul 2012 11:28 PM
- Replies
- 5
- Views
- 1,016
I tried this but still get an error at the line 'formpanel.getForm().loadRecord(rec)' - it says 'Microsoft JScript runtime error: 'undefined' is null or not an object'. I tried alert(formpanel) upon...
-
9 Jul 2012 5:53 AM
- Replies
- 5
- Views
- 1,016
I read in Ext JS in Action ( by J. Garcia) that if we have an instance of Ext.data.Record, we can use the form's loadRecord method to set the form's values. However, he does not give a working...
-
6 Jul 2012 4:39 AM
Jump to post Thread: Editable Grid with popup by anitacynax
- Replies
- 9
- Views
- 5,338
The example is great but where I can see the code behind it? I am struggling to do something similar, namely populating a pop-up form with grid row data upon clicking of the Edit icon (in...
-
2 Jul 2012 12:39 AM
Jump to post Thread: RenderText/JsonConvert by anitacynax
- Replies
- 3
- Views
- 670
Thanks for your prompt reply, sword-IT. My assignment, however, is to leave the code of the DeleteUser function unaltered and use RenderText (in the delete function) to get result.responseText to...
-
1 Jul 2012 11:43 PM
Jump to post Thread: RenderText/JsonConvert by anitacynax
- Replies
- 3
- Views
- 670
I have a DeleteUser function that gets called when the user clicks on the delete row icon in an actioncolumn.
Here is the code for the function:
function DeleteUser(id) {
Ext.Ajax.request ({... -
18 Jun 2012 12:58 AM
Jump to post Thread: using Ext.Ajax.request by anitacynax
- Replies
- 6
- Views
- 1,267
thanks for the reply, c5m7b4. i think it will take me some time and practice to understand ajax requests in ext js.
-
16 Jun 2012 4:52 AM
Jump to post Thread: using Ext.Ajax.request by anitacynax
- Replies
- 6
- Views
- 1,267
Hi Scott
Thanks for your reply. I am using an actionColumn for the icon on the grid. Also instead of success and failure I need to use a try/catch block.
Results 1 to 25 of 26
