Sencha Touch 2 App FieldSet not rendering - sencha-touch-2

I am developing Sencha Touch 2 app, using the sdk version Sencha-touch-gpl 2.2.1. I am facing a very peculiar issue, I have a navigation view, in which the first view is a List Screen on itemdisclosure of individual item in the list the Detail Screen is displayed. The Detail screen comprises of fieldset & another list within a panel.
Until yesterday the app was working perfectly fine. Now I am facing an issue,
1) The toolbar Title is now not getting displayed, it shows for fraction of secs and then disappears (No code change is done and it was working perfectly fine a day before).
2)The List screen displays properly, on itemDisclosure, in the detail screen the FieldSet is not getting displayed but the list in the detail screen is getting displayed perfectly fine.
I was populating the Detail screen with the record from the selected list item, I use the following code on itemdisclosure
showDetail : function(list, record) {
this.getMain().push({
xtype : 'ticketdetail',
data : record,
});
record holds the value, I have checked it via printing the ticketid on Console.
I have tried the following things,
Cleared browser cache
Generated another workspace, copied the project and run the project from there.
Used older version of the code in which these issues were not there
NONE OF Them worked :(
Has anyone faced this kind of issue or anyone has any suggestion. Please help!
Regards,
P

This looks like the problem caused by the auto-update to Chrome 29. See the fix here: http://www.sencha.com/forum/announcement.php?f=90&a=43

Related

Custom Sisense Bar Chart using Blox Progress Bar not working

I want a Progress Bar that will display my current sales in comparison to the target. I found a similar tutorial and followed it exactly
This is the tutorial I followed :
https://profusion.com/insights/custom-bar-charts-in-sisense-blox-with-diego-cordero/
I have watched the youtube video for the same and used the exact code snippet from this blog. I am unable to get the progress bar configured correctly after trying several times. The purple tooltip is pointing before the progress bar even starts and seems static. Below is a screenshot for reference.
Please let me know what I am doing wrong and how to correct it.
I faced the same issue.
There is some inconsistency in formatting the percentage value.
Here's the workaround that fixed it for me:
Change {panel:percentage} reference to {panel:percentage}% in the script and in the "percentage" field in the panel, multiply the value by 100 (so that instead of 0.21, You will have 21, for example)
Then it should display the values correctly :)

Show recently added record at top in vuejs

There is a image upload functionality in my vuejs application.
The image upload works good and the uploaded recorded is also displayed.
But this recently added record get displayed at last in my list. On page refresh it appears at top.
I want to show the recently uploaded image at top as soon as after successful upload.
I have been trying really hard for this since 2 days and couldn't find the solution.
Please help. Vuejs version is 2
basically if I'm correct what you want is to push new images to the images array, for this just use unshift()
something like this
this.images.unshift('url_or_info_of_the_new_image')
Here, you do have an example of code showing you how you could achieve this.
https://codesandbox.io/s/gracious-tree-nig54?file=/src/App.vue
Essentially, the most interesting part is this.initialArray = [this.newValue, ...this.initialArray].
Also, depends on what you've tried until now but keep in mind the few caveats JavaScript does have with VueJS v2: https://v2.vuejs.org/v2/guide/reactivity.html#For-Arrays

v-app-bar component bug since update my dependencies

I'm new here.
I use the vueJS and vuetify framework for almost 1 year and the v-app-bar component bug since I updated all my dependencies.
My version of vue js : 2.6.11
My version of vuetify before the bug : 2.2.3
I took screenshots and modified them with paint. I highlighted the divs with a black fill and yellow border.
As shown in the following picture :
I have an app-bar upstairs,
a navigation-drawer under the app bar on the left side of the screen
a v-content under the app bar in the middle
picture before bug
So far, so good. Yesterday I updated my dependencies (which I will do more often now). Below is the update:
picture maj
My version of vuetify with the bug : 2.2.18
Then by relaunching the application, my bug appears.
The app bar is still on top - OK
The navigation-drawer does not take into account the app bar and is placed behind it and in top 0 - KO
The v-content has the same behaviour as the navigation-drawer - KO
All divs below the app-bar do not calculate the app-bar. But be careful, the weird thing is that this bug disappears when I refresh the page.
Look at the following image that shows the bug:
picture now bug
To better understand I have highlighted the divs above the app bar in the following image:
picture better now bug
What has changed in "vuetify" to have creating this bug?
I've tried to improve my architecture but I always find this bug.
EDIT
I found the version of vuetify when the bug appears : 2.2.5
FIXED
The problem was due to my architecture. Thanks to the community for the help.

Like functionality in react-native

This is regarding React Native Mobile App Development.
I am facing an issue with "Like" functionality for a List-view Items.
When i like a List-view Items, it works fine and the colour changes to blue instantly. But on existing the app & opening it again, the like count is increased but the colour set to the default again.
Please help me with this issue!

Apple's latest (2015) 'link to app store' directive causes unwanted Safari behaviour

I want to add a link from my app to another of my apps on the appstore.
Question How to link to apps on the app store showed that the itunes.apple.com link was,until recently, the normal way to go. I've tried this and everything is fine. The problem begins when I disgard this and use Apple's new recommendation of using appstore.com. I use the following line of code:
[UIApplication sharedApplication] openURL:[NSURL URLWithString:#http://appstore.com/myappname"]];
The first time I call this from my app it works well. You see it jump through Safari and move onto the appstore where it displays my app.
At this point if you look back into Safari you will notice a new blank tab labelled Favourites has been created.
If I go back to my app and perform the same action to link to the appstore again I'm prompted with one of the two popup boxes:
"Open this page in "App Store"? [Cancel] or [Open].
or
"Cannot Open Page. Safari cannot open the page because the address is invalid" [OK]
I've found that manually deleting the blank tab in Safari will allow the link to work properly but this behaviour isn't what I want my users to see- and I wouldn't be expecting them to delete the blank tabs from Safari.
Any advice on stopping this behaviour whilst following Apple's new rules greatly appreciated.
A simple and clean solution is to present an instance of SKStoreProductViewController inside your app (modally) to display information on the products you are interested in. The user can interact with it as a small view on the App Store and you can simply dismiss it when done.