I want to change Header name as a clients in openerp. I am using python and xml. see my screenshot.
Yes, you have to edit the XML for the action. Activate developer mode by going to help > About openERP > click active developer mode.
That will let you see the developer information. Then click edit action, and change the name of the action to what you want.
Related
When I try to edit a CDE Dashboard, the only buttons enabled in toolbar are Open and New, but Save, Save As and, especially, Edit Content buttons are disabled.
I have tried to change profiles permissions (adding all to all users) and to put write permissions to authenticated users using the file properties too, with no effect. I have checked pentaho.xml and tag seems to be correct:
<operation>
<id>EDIT</id>
<perspective>wcdf.edit</perspective>
</operation>
If I create a new CDE Dashboard, I'm able to save it using CDE toolbar, but I don't find the way to edit it later. Could anyone help me?
Thanks in advance!
PD: Pentaho BI version: 5.4
Can I add additional links to the Shopify admin panel? (ie. under Apps and Settings)? It would be great to include a link straight to the edit HTML/CSS screen instead of navigating via Themes - '...' - Edit HTML/CSS. It will help speed-up the development process when working in the browser direct.
Its in the settings_schema.json. When you go to your themes, choose edit css/html, then find the config section on the left. Expand if necessary and find the file settings_schema.json. You can edit this file to create custom items that you can modify through the admin dashboard by choosing the "customize theme" option.
Basically, you can customize the customize theme area. :)
To address your specific situation, I would create a checkbox in the theme admin to enable/disable a link to what you are looking for. Then could code into the theme somewhere to display that link if it is enabled and other conditions are met. This is optional however, as you could just directly add this code to the theme as well without the enable/disable functionality, just makes it a little cleaner. I'm including the info about settings_schema.json to help others as well.
Summary:
In the admin dashboard click Online Store
Then Click Themes
Next Click the little ... button and choose Edit HTML/CSS
In the left column find the config section and expand it
Click settings_schema.json to edit the file and customize theme admin
Hope this helps someone :)
Shopify is a SaaS or fully hosted (cloud) solution. The admin panel can't be modified "out of the box". You could write a userscript (JavaScript injection) which would alter the Shopify Admin for you. Tampermonkey will help you!
Shopify has a pretty great desktop editor you can download, and directly open your HTML and CSS files in your text editor. When you save, the changes are automatically pushed live to the theme.
https://apps.shopify.com/desktop-theme-editor
I want to change the language of openERP's latest version Odoo 8,
some one give me suggestion and I am also googling about this problem and I found that change into the preferences but that menu also I not locate,
Please give me a suggestion for how to do that and if any query related questions please comment me....)
Click on the user on right top you will see preferences menu.
In preferences menu change language and then reload page if does not work logout of system and login again.
Module setting -> Menu Translation -> Load a Translation (choose your language)
Then
Click on the user on right top you will see preferences menu -> change your language
how can I get logo of curent comoany in openERP and us it in webkit Report without pass the name of Imge to mako file
You can use this:
<img src="data:image/jpeg;base64,${company.logo}" />
Are you using base_report_designer module ? If it is so, You need to add your company logo in Company form, There is a field to add a logo at top of the Company form. Add it and Save it.
If you are creating a report by Report Designer plugin, After creating a report, when you will click on Send to the Server button, in that wizard, You need to tick 'Corporate Header' option during sending to OpenERP. By doing this, You will be able to see in report from OpenERP.
I am assuming that you are using base_report_designer module.
You can also use this:
${helper.embed_image('png', company.logo, 145, 35)|n}
Where 145 is the width and 35 is the height. The statement above will create an <img/> tag for you.
I have modified EditForm.aspx of a list in SharePoint 2010. I need to launch the dialog window (that's what EditForm.aspx seems to be launched as) maximized, but I haven't been able to find the correct setting to tweak.
A quick web search suggests to use the showMaximized:true style setting, but I am unable to find the element in EditForm.aspx to apply this attribute to.
If you want to remove ALL dialogs from a list, go to:
list settings -> advanced -> dialog -> turn them off
But if you just want to change the edit button, you will probably have to create a new edit <CustomAction> that uses javascript, see this example:
http://www.chakkaradeep.com/post/Using-the-SharePoint-2010-Modal-Dialog.aspx
Its for a different button, but you should get the idea.
And then you will need to build a <HideCustomAction> to hide the original edit button
Check this : http://www.wawawum.com/blog/post.aspx?id=66a5aed2-f530-4687-bd42-1ef0fb379544
Add a Content Editor WebPart to your EditForm, then put the code found in this blog to maximize the Dialog when opening it.
Works very well for me.