vige
March 14, 2012, 12:18pm
#1
Im testing my app in blackberry, and i found a problem with the datepicker in the low-res models
capture:
screen specifications:
Physical size:
2.40 inches
Resolution:
320 x 240 pixels
Pixel density:
167 ppi
Technology:
TFT
Colors:
65 536
the calendar dont display well, you can only see one line and one day.
Are there any way to fix it?
thanks in advance
You can change height of date-cells by initing calendar as
{
view:"calendar",
id:"mycalendar",
cellHeight:12, // custom height value
vige
March 26, 2012, 8:12am
#3
It works, but i didn’t found a way to make work well, So I used another solution, I use native controls of date, using a text input view with the type:‘date’, like this:
{ view: 'text',
css: 'background_transp_elementos_menu_ppal',
label: idioma.date,
value: today,
labelPosition: 'left',
inputWidth: ancho_pantalla,
labelAlign: 'left',
type: 'date',
id: 'date_field',
labelWidth: "130"
},
good luck to everybody