how to show iconCls heart outline ? unfilled heart
Type: Posts; User: faustoct
how to show iconCls heart outline ? unfilled heart
trying to make an existing sencha touch app use package loader. how to do it?
How to fix video in carousel to avoid gets black when swipe back ? It seems the carousel has a optimization to avoid handle long "lists". I fixed it by change bufferSize to limit of my carousel.
...
smth like solved
{
xtype: 'list',
listeners : {
disclose: function(view, record, target, index, e, eOpts) {
e.stopPropagation()
return...
When I tap disclosure or item row it fires to the same handler function. How to treat it differently?
Is there way to load minimal chunk of assets (css/javascript) to load the app faster?
Anyone? initialization takes too long. Very painful and degrade ux.
I'm tweaking the code looking to achieve a better performance. I eager load some views on Ext.application like
Ext.application({
name: 'Club',
requires: [
'Ext.MessageBox',
could reach something like ~2-3 seconds only in framework initialization. It's still a lot considering to have backend and components to load further. Is there a way to load it < ~1 second ?
Noticed that phonegap + sencha touch take ~5 seconds even more which is too long for a blank Ext.application. How can I make it load faster ?
it takes awhile to open app ~1-2 seconds which
it...
add inside a container. set container height in dataview load listener worked for me.
it's a template. already fixed it btw. tks
add it in a container fixed it
Noticed that phonegap + sencha touch take ~5 seconds which is too long for a blank Ext.application. How can I make it load faster ?
it takes awhile to open app ~1-2 seconds which
it takes ~2-3...
any solution ?
i'm facing the problem, does anyone fix it? I cannot remove scroll , it might have scrollable true.
the follow code doesnt work to scroll container with video and dataview, anyone? i'm struggle with it
Ext.define('Club.view.SharedVideo', {
extend: 'Ext.Container',
xtype:...
follow the code I'm struggling in sencha touch
<div style=";border-bottom:1px solid #ccc; display:flex;" >
<div style='width:42px'>
<div style='...
Got this message from apple store. It seems to render on ipad but layout got broken. Is there any thing I can do to fix it easily?
Guideline 2.4.1 - Performance - Hardware Compatibility
We...
For some reason Ext.device.Geolocation.watchPosition is ignoring frequency value , probably calling in default frequency value.
code
Ext.device.Geolocation.watchPosition({
...
Fixed it!
set video z-index: 1;
set video position: absolute;
set controls/overlay z-index:2147483647;
The buttons over video is hidden when the original html is modified somehow. Is there a way to controls be always visible over video?
After investigating figure out when set z-index -1 to video...
Added the video in a container. So I can remove and add items. I don't how expensive is it but works as supposed .
Ext.define('VideoPlayer', {
extend: 'Ext.Container',
xtype:...
try to reload a new video in existend Ext.Video. How to do?
itemtap: function( dataview, index, target, record, e, eOpts ){
var url=record.data.posts[0].url
var...
I did this way
var serializeObj = function(obj, prefix) {
//{a:1,b:2}
//return (Ext.os.is.Android ? encodeURIComponent(JSON.stringify(params)) : params)
var str = [],...