Unable to edit menu in Neto - neto

I want to edit menu item in Neto but could not reach the right template. My current theme is midsummer and I am editing suggested template header/template.html (Please check attached screen shot) but I cant see any changes at front end. I dont know why ?

There is a inbuilt potion for refreshing cache in Neto, I clicked on that and now I can get the result.

Related

How to use ionic model to view and edit data? is it good approach?

I have saved data in sqlite. Now i want to edit data. I want to create a model and give list of saved records in it. when user click on any row display on model it will go into edit mode . Is it good approach or should i create another page ??
I think to provide them with edit button/icon and when they click on edit button you can change all labels to Text edit format.
reasons -
This will be a mobile app, hence user needs to touch on the screen to scroll/change to another page. if the user mistakenly clicks on the label then the label will get change to edit mode and I guess that's bad user experience.
Every time you need to save the changes when the user clicks on the label (more database operation for a single word change).
Instead of this just provide edit button/icon, when they click on edit button, make the same page change to edit mode and show them save button (replace edit button).
Hope this will help you.
I don't see the link with the data model. However, when it comes to design, it is better if the user clicks on a row to open a new page.
If you want to switch to an edition mode, then you need a button dedicated to this feature.
Think "WYSIWYG" --> "What You See Is What You Get".

I want to add Update Button under common/cart without Refreshing using opencart 2

I want to add Update button along with quantity input type same as under checkout/cart to cart under common problem is it doesn't come up without refreshing. I want update button to come along with remove button without refreshing
Thanks!!

emberjs back key leaves some display from child route

To see the problem, please run the following in browser by clicking the arrow shown in upper right corner of of output panel.
http://jsbin.com/uVORASe/4/edit?html,js,output
Click one of the links (either strategy-1 or strategy-2) to display output generated by the child template. Then click back button on browser. When the back button is clicked, browser shows the parent URL as expected. But parts of the child display remains on screen. This process repeats every time a child route is visited. Why? Going back to the parent route should just display strategy-1 and strategy-2 on the left side.
I don't think this is an Ember-Data issue because problem also happens when I tried Ember-Model. I think use of the bootstrap classess has something to do with this. For example, if I take away the bootstrap table-responsive class, Ember throws an error.
Any ideas to explain what's going on?
The close tag of your <table> tag is wrong. You are using </table the expected is </table>.
http://jsbin.com/UKONORI/1/edit

bada Programming - Scroll panel does not display all editFields

The tab I'm working on has 12 editfields, the scrollpanel does not display all of it, the last 2 editfields gets chopped/cut off. They are only displayed when I click into them and put in some input. May I know how to solve this?
You can use Scrollpanel.add these edit boxes to scrollpanel and add scrollpanel to Form.

How to keep scrollbar from automatically going back to the top?

I have a list of links within a div with a scrollbar. When the user clicks on a link below the x-height of the div, the srollbar automatically goes back to the top. I would like the scrollbar to stay in position no matter what links the user clicks. Here is the site- try clicking on a painting from 2006 and you'll see what I mean.
Does anyone have any ideas of how I can make this scrollbar behave?
Thanks,
Brad
It looks like these links are just that, links to a new page... and thus it's not so much that the scrollbar is resetting but that a whole brand new page is coming up and the 'reset' scrollbar is just a byproduct.
The most elegant way would be to have those links pull in the new content without reloading the page, but this requires AJAX. If you aren't familiar with the intricacies of AJAX and how to implement that, then you could change the link to include an anchor to the link, like so:
http://siddharthparasnis.com/2006-01/#menu-item-377
The page would reload scrolled down to that item.