Is there a way to completely hide the label of a text field inside Add form?
I guess it should be inside beforeInitData event.
I want only the text box visible in my form. How to achieve this.
any idea??
Many thanks.
Related
I added the field adresse: city to the form and
I need to hide it from composite adress so as not to have it twice in the form. Is there any way to do this?
Thanks in advance,
Hiding composite address fields on the form is no different than hiding regular form fields.
Use the control's SetVisible property to hide it.
Xrm.Page.getAttribute('address1_line1').controls.forEach(function(ctrl) {
ctrl.setVisible(false);
});
can i create an event on Ckedtor where as soon as i write some thing in textarea of editor the same should dynamically update on another label below it using jquery.
i found the answer
ck.on('change',function(){
$('#lblemailmsg').text(CKEDITOR.instances['spnemailsignature'].getData());
I want to know how to handle onchange event of dropdown in nsis installoptions .
Actually what I want to do is based on selection made on dropdown some text fileds should be polulated.
Take a look at http://nsis.sourceforge.net/Docs/nsDialogs/Readme.html#step-notify
Alternatively, could you move the dependent text fields onto the next page?
I have created JQGrid.
I have put the Data in cell and one html Link in cells.
OnClick of that link I need to open JQGrid Specific popUp.Popup have one combobox .I'll select one option and click submit button and that data needs to be appear in clicked cell.
Thanks
The construction which you suggest seems me too complex. Probably you can consider to use more simple user interface?
Nevertheless you can just use setCell method to set new contain of the cell of the grid.
I need help with jQuery jqGrid and subgrid.
I am able to create a Subgrid inside my jqGrid succesfully. The next step is to add a custom option list in the main grid navbar somewhere so that depending on which option the user selects, a different kind of subgrid opens.
Is it possible to add custom options to the jqGrid navigation bar?
The only standard way to add custom element in the navBar is to use navButtonAdd method which add a button.
If you want to add another custom HTML elements you have to do this manually with respect of some jQuery function like jQuery.append. I recommend you to read the code of navSeparatorAdd and navButtonAdd functions.