-
7 May 2012 7:24 AM #11
-
8 May 2012 6:37 AM #12
-
8 May 2012 10:29 PM #13
Here's and excerpt of what I've got:
Code:Ext.define('myApp.view.NewEvent', { extend: 'Ext.form.Panel', requires: [ 'Ext.form.FieldSet', 'Ext.ux.picker.Time', 'Ext.ux.field.TimePicker', ], xtype: 'neweventplan', config: { itemId: 'newevent', centered: true, height: '100%', width: '100%', modal: true, showAnimation: { type: 'slideIn', direction: 'left' }, styleHtmlContent: true, scrollable: true, items: [ { <other components }, { xtype: 'fieldset', items: [ { <other components> }, { xtype: 'timepickerfield', label: 'Tid', itemId: 'timefield', value: new Date(), name: 'time', picker:{ height: 300, } }
-
8 May 2012 11:07 PM #14
picker above modal panel issue
picker above modal panel issue
Setting the zIndex to 10 or larger seems to fix the picker above modal panel issue..
Messageboxes also have a zIndex of 10 by default.
Try this:
Code:picker:{ height:300, zIndex:10 }
-
8 May 2012 11:23 PM #15
The zIndex thing did the trick. Thanks

... I really need to get my UPPER/lower case thing straight
-
30 May 2012 6:57 AM #16
Date and time
Date and time
Hi I was trying to use your code but i need a pickerfield where you can choose month, day, hours and minutes, is there a posibility to do this in a same picker using your code ?
-
6 Jun 2012 4:13 AM #17
how to bind data to slot from database....
-
30 Jul 2012 7:12 AM #18
Error got to achieve that.
Error got to achieve that.
hi renato01,
Unable to achieve that I am getting the following error,
Uncaught Error: [Ext.createByAlias] Cannot create an instance of unrecognized alias: widget.timepickerfield
I put the timepickerfield class in the main view of my app and Time.js in sdk/src/ux/picker folder, while I am using Sencha touch 2, pleae guid eme on that.
Thank
Moin
-
30 Jul 2012 7:20 AM #19
@moin4u
Please read post #8 in this thread. Sounds like the same problem..
Put the 'ux' folder in the root of sdk.
http://www.sencha.com/forum/showthre...l=1#post797526
-
14 Jan 2013 1:09 PM #20
Timestamp field
Timestamp field
Is there a way to extend this to accept both date and time as a single field (Timestamp)? I have a need to send Timestamp to my backend as "01/14/2013 3:30 EST".



Reply With Quote