Is it possible to allow add and save actions but hiding the "add row" and 'edit" buttons in the grid toolbar? When I tried unchecking those buttons I was not longer able to add data to the grid progrmmatically. How can I allow adding multiple rows programmatically and having "save" button but hiding "add row" and "edit"?
Try to add this css to your page:
#myStaticIgId button[data-action="selection-add-row"], #myStaticIgId div[data-action="edit"] {
display: none !important;
}
Related
I made page for editing and adding clients, when I click on button, I get a modal dialog with filled fields..
Also I have link on ID column which opens same dialog, where I can edit existing row.
I want to get empty fields when I click on "ADD" button.
On the ADD button set the attribute to clear cache of the modal dialog page nr.
In your report, navigate to the ADD button definition. In the Property Editor, click Target to verify Page and Clear Cache are both set to the dialog page number.
Is there a quick way to increase the width of Pop-up Item in Oracle Apex.
I dont know if APEX 4.1 (you should really update to at least 5) has those options.
But the newest one offers the "Width" option under "Appearance" where you can select the amount of characters the field will be wide.
If you want to change the size of the popup window, there is the "Popup Width" property under "Settings".
If none of these options are what you want, or they are not available for your version, you can also just use CSS and change the width of the popup manually like this:
.myPopUpClass {
width: 300px;
}
Try setting the Attributes parameter for the modal Page (Page Attributes) to width="300px"
style="width:350px;" by entering into HTML Form Element Attributes
I am using a wizard modal for my step-by-step form. I would like to control the generation of the last button, which currently generates a button labeled "Complete" on the final step. I want to hide that "Complete" button since I am including a submit button on the last step. How can I do this?
You need to add the following CSS to hide the complete button:
.modal-content [data-step="complete"] {
display:none;
}
Codepen example: https://codepen.io/aystarz52/pen/mZaGbz?editors=1000
I have a "Slide Show" control and I'd like to remove the first "X" button in the tool bar of the control. I have checked .ascx and .ascx.cs file to see if there is any related code, but nothing.
I think these buttons are from Core DB and I don't know where I can remove or hide this "X" button in Sitecore.
Could you help me, please?
Find Slide Show sublayout in your Sitecore tree.
Scroll to Editor Options section and remove Delete from the Page Editor Buttons field.
is it possible to hide or deactivate a menu item in the file button called also jewel button? I´m able to hide completely the file button with javascript, but I want to hide or disable only some menu items in the flyout menu.
Thank you in advance
You will find these Jewel buttons within the application ribbon. You can choose to hide these buttons in your customizations.xml via some hide HideCustomActions. The names of some of the Jewel buttons you will find are:
- Mscrm.Jewel.NewMenu.NewActivity
- Mscrm.Jewel.NewMenu.NewRecord;
For example, within your appointment ribbondiffxml section within your customizations.xml, you could have a HideCustomAction like:
<HideCustomAction HideActionId="CustomHideAction.JewelMenu.NewActivity" Location="Mscrm.Jewel.NewMenu.NewActivity" />