Search Type: Posts; User: jennifer123
Search: Search took 0.01 seconds.
-
31 Jul 2012 1:59 PM
- Replies
- 6
- Views
- 1,190
If the code was setTimeout("alert(1)",..., then it would have worked fine without the error. However, since the error happened after 10 seconds that means that setTimeout is working. It's just a...
-
31 Jul 2012 11:44 AM
- Replies
- 6
- Views
- 1,190
Well it works for me. Can you try the following
I see this.printpanelWin.hide(), try replacing close() with hide() or destroy(). (I hope you changed mywindow to this.printpanelWin :D)
If the... -
30 Jul 2012 12:57 PM
- Replies
- 6
- Views
- 1,190
var mywindow=new Ext.Window({
title:'My Window Title',
items:someitems,
width:500,
height:300,
autoScroll:true,
listeners:{
show: function() {
... -
30 Jul 2012 6:03 AM
- Replies
- 6
- Views
- 1,102
When defining a combo box, you provide displayField and valueField from the store. Use the same for lovcombo.
If you still have problems, then please post some more relevant code for me to see... -
27 Jul 2012 1:38 PM
- Replies
- 6
- Views
- 1,102
Although the example provided by Saki doesn't include displayField and valueField, but when I implemented LovCombo, I added displayField and valueField to it. Otherwise it was showing as undefined. ...
-
27 Jul 2012 10:03 AM
- Replies
- 6
- Views
- 1,102
Did you try xtype: 'lovcombo'. The Ext.ux.form.LovCombo.js has
// register xtype
Ext.reg('lovcombo', Ext.ux.form.LovCombo); -
24 Jul 2012 7:17 AM
- Replies
- 2
- Views
- 583
{.....
title: 'My Title',
style:'text-align:center;',
...
} -
24 Jul 2012 6:21 AM
- Replies
- 9
- Views
- 1,449
Well the css I mentioned was for x-form-radio-group. Having a close look at your code, I am unable to understand why are you using xtype:'radio' for every option. I might be incorrect, but I think...
-
24 Jul 2012 5:38 AM
- Replies
- 9
- Views
- 1,449
I have had issues with labelWidth as well. I finally found to make this change to css. Try adding:
<style type="text/css">
.x-form-radio-group {
width:100px;
... -
24 Jul 2012 5:20 AM
Jump to post Thread: Root JS Url by jennifer123
- Replies
- 3
- Views
- 799
Try:
alert('<%=request.getRequestURL().substring(0, request.getRequestURL().length() - request.getRequestURI().length())%>')
This returns http://localhost:8080 for... -
20 Jul 2012 1:40 PM
- Replies
- 4
- Views
- 1,932
Try changing rootProperty to root.
-
20 Jul 2012 4:46 AM
- Replies
- 4
- Views
- 1,393
Can you please post some of your relevant code. I usually use:
my_grid_store.filter('my_column_dataIndex', value_to_search, false); -
20 Jul 2012 4:32 AM
- Replies
- 5
- Views
- 1,183
There is no store for combo. Also, combobox does not require 'dataIndex'.
{ xtype:'combo',
fieldLabel:'Company List',
id: 'companyName',
store:... -
19 Jul 2012 9:00 AM
- Replies
- 5
- Views
- 1,183
Add 'displayField' and 'valueField' to your combo instead of dataIndex.
-
18 Jul 2012 8:34 AM
- Replies
- 3
- Views
- 1,066
Check my reply to: http://www.sencha.com/forum/showthread.php?230879-Unable-to-sort-dates-in-Sencha-list&p=855991&viewfull=1#post855991
Using 'date' will make it sort correctly. Use renderer to... -
18 Jul 2012 5:25 AM
- Replies
- 3
- Views
- 1,066
In your store define 'email' and 'login_time' as:
{
name: 'email',
type: 'string', //Using 'String' will make it case sensitive
mapping: 'email'
}, {
... -
17 Jul 2012 2:30 PM
- Replies
- 2
- Views
- 901
If I understand correctly, you are trying to display the data in a column. Try a renderer on the column
{
header: 'Date',
dataIndex: 'maturityDate', ... -
17 Jul 2012 2:11 PM
Jump to post Thread: GridPanel Scroll by jennifer123
- Replies
- 4
- Views
- 1,441
Try this
text: 'Go bottom',
handler: function() {
var lastRecord = grid.store.getCount()-1;
grid.getSelectionModel().selectRow(lastRecord);
... -
16 Jul 2012 10:16 AM
- Replies
- 3
- Views
- 2,212
Thanks for your reply, but I already have height defined for my north region:
{
region:'north',
layout:'fit',
height:30,
... -
5 Jul 2012 12:36 PM
- Replies
- 3
- Views
- 2,212
I am having the same problem. Have you found any fix for it?
Results 1 to 20 of 20
