Check In Page Customisation

We need to change the default content check-in page in UCM, and haven't had luck finding info in the documentation.
The two things we want to do are:
1. Change True/False and Yes/No option lists to check/tick boxes
2. Change width of metadata fields based on views
For 1, I have a vague memory of the trainer saying that we can do this by modifying a javascript file somewhere. I can't remember where or how to do it. I assume this is a fairly common thing to do.
For 2, when an option list is loaded from a View/Table the default html list width of "19" characters is used when the table field length is 255 characters. The actual metadata stored is the id number of the row, the text is selected by the user but it is truncated by the edge of the option list box. I can't see any where to change this.
Also the field length seems to affect Content Categorizer for these same fields, it will truncate it to 19 characters when the full text is found. Is there any explaination for this?
Thanks,
Ryan.

I'm able to present the checkboxes and assign the value to metadata using the following code:
<$if strEquals(fieldName, "xLang") and not (isInfo or isQuery)$>
<script>
function boxFunc()
var textval=document.getElementsByName('xLang')[0];
var langs=document.getElementsByName("ucmlang");
larray="";
for(i=0;i<langs.length;i++)
if(langs.checked)
larray=larray+langs[i].id+",";
larray=larray.substring(0,larray.length-1);
textval.value=larray;
</script>
<tr <$strTrimWs(inc("std_nameentry_row_attributes"))$>>
<td<$if captionFieldWidth$>width="<$captionFieldWidth$>"<$endif$> <$if isInfo$>align=right<$endif$>><$strTrimWs(inc(fieldCaptionInclude))$></td>
<td <$if isFieldInfoOnly$>colspan="100"<$endif$> <$if captionEntryWidth$>;width="<$captionEntryWidth$>"<$endif$>><$inc(fieldEntryInclude)$></td>
<td><!– addition –>English<!– end addition –><input type="checkbox" name="ucmlang" id = "English" onclick="boxFunc()">
<td><!– addition –>French<!– end addition –><input type="checkbox" name="ucmlang" id = "French" onclick="boxFunc()"></td>
<td><!– addition –>Italian<!– end addition –><input type="checkbox" name="ucmlang" id = "Italian" onclick="boxFunc()"></td>
<td><!– addition –>German<!– end addition –><input type="checkbox" name="ucmlang" id = "German" onclick="boxFunc()"></td>
<td><!– addition –>Japanese<!– end addition –><input type="checkbox" name="ucmlang" id = "Japanese" onclick="boxFunc()"></td>
</tr>
<$else$>
<$include super.std_nameentry_row$>
<$endif$>
but i'm stuck which include to modify in case of the update metadata form.
Edited by: user1175496 on Nov 15, 2012 11:13 PM

Similar Messages

  • How Can I Create a New Check In Page?

    Hello,
    I'm trying to create a new check in page using hcst or jsp but i can´t find the place to put it... or to customized it... and I don´t know where to find the files for it.
    Thanks,
    Rui Santos

    As was already mentioned there is the rules/profiles through configuration applet, but if you want to use a custom HCSF, HCST, JSP, etc., and then add it to the menu you will need a component that makes use of the navBuilder JavaScript API.
    Then you add a resource file to your component and add something like this to that resource:
              <@dynamichtml custom_finish_layout_init@>
                   <$include super.custom_finish_layout_init$>
                   navBuilder.addChildNodeTo
                        'ADMINISTRATION',
                        'item',
                        'id==FileStorePathFinder',
                        'label==File Store Path Finder',
                        'url==' + httpCgiPath +'?IdcService=FILE_STORE_TEST'
              <@end@>
    For this example, we are actually adding a menu item to the Administration menu, but all the menus can be manipulated like htis.

  • Hi, can someone please tell me why the spell check in pages doesn't work. I went to preferences and enabled this auto spell checker and have set the language to british english. But still it doesn't work while it works perfectly in TextEdit.

    Hi, can someone please tell me why the spell check in pages doesn't work. I went to preferences and enabled this auto spell checker and have set the language to british english. But still it doesn't work while it works perfectly in TextEdit.

    Inspector > Text > More > Language
    Only applies to selected text, like making it a particular font.
    It is not a setting that sticks. If you continue to paste in text from elsewhere particularly the Internet it will have a different or None language set to it. You need to select it and make it B.E.
    Peter

  • How to restrict the Standard Check In Page

    Hello,
    Please let me know how to restrict standard check in page in sysadmin account.
    It would be great if anyone replying me as soon as possible.
    Thanks,
    Ramesh

    If I got your question, you intend to restrict a user 'sysadmin' (or someone with similar permissions) from any check in. And I guess, it's 10g (it 11g you would probably mention 'weblogic', because 'sysadmin' is already quite restricted there).
    Well, you cannot use security model (roles, security groups and all that stuff), because you would disable admin rights together with checkins ('W' permission).
    Therefore, the only way I can think of, is a component. You can create a custom component that will modify CHECKIN service to prevent a particular user or group of users from checkin of particular (or all) content. Check HOWTOCOMPONENT to get an idea. Or drop me an email and I send you a component which does a similar check, but controls that a user cannot exceed his or her quota.
    Alternatively, you could also modify GUI to disable access to CHECKIN pages to such people - but I would suggest to use the component as well - users could use other ways (checkin via website or virtual folders) and GUI change would not work for these.

  • Can I update plugin on dial-up - check & update page doesn't work

    I am on DIAL UP as I live in remote area. Got message that Flash plugin was disabled because it is out of date. Tried to update and told plugins BLOCKED FOR MY SAFETY, then told to go to "Plugin Check & Update" page. The "Checking Mozilla on Status of Your Plugins" circle/hourglass has been going round for almost 2 hours - nothing happening. Last time I had to pay computer guy $50 to update stuff. I can't afford this every other month. Any suggestions?

    Thanks. I ended up taking my PC to my daughter's - she's on high speed - and I downloaded the updated versions of everything I needed. My Dial-up is too slow (26.4 kbps YIKES!) to do that... bummer. So guess I'll just have to bring my PC to town periodically to do updates.

  • How to remove Seperator from check-in and profile check in pages

    How to remove Seperator from check-in and profile check in pages
    The seperator is included on the checkin pages, which is present in the std_page with name "std_namevalue_separator", this is called by td_document_checkin_fields and std_document_file_fields.
    Defination of include:
    <@dynamichtml std_namevalue_separator@>
    <$if not isUploadFieldScript$>
    <tr>
         <td width="<$captionFieldWidth$>"><hr /></td>
         <td width="<$captionEntryWidth$>"><hr /></td>
    </tr>
    <$endif$>
    <@end@>
    I have to remove the following include from some of the profile check in page.
    Please suggest if anyone have some idea, how to proceed.
    Thanks,
    Sumit

    791848 wrote:I have to remove the following include from some of the profile check in page.The key here is that you want to do this in some profiles, not all profiles or globally, if I'm reading this right.
    Without writing a component, you can put this code in the "side effects" box in the desired profile(s). This code removes the horizontal rule, and inserts a non breaking space in its place.
    <$setResourceInclude("std_namevalue_separator","<$if not isUploadFieldScript$>
    <tr>
    <td width=\"<$captionFieldWidth$>\"> </td>
    <td width=\"<$captionEntryWidth$>\"> </td>
    </tr>
    <$endif$>")$>YMMV. The non-breaking space may get stripped out in the forum.

  • How do I spell check a Pages document in Indonesian?

    How do I spell check a Pages document in Indonesian?

    http://pagesfaq.blogspot.co.uk/2006/11/i-want-pages-menus-in-english-but.html
    Does this get you anywhere?

  • Check in Page customization

    Hi I want to add multi select check boxes for one of the metadata field on the check in page,
    can some one tell me the steps to do it.

    I'm able to present the checkboxes and assign the value to metadata using the following code:
    <$if strEquals(fieldName, "xLang") and not (isInfo or isQuery)$>
    <script>
    function boxFunc()
    var textval=document.getElementsByName('xLang')[0];
    var langs=document.getElementsByName("ucmlang");
    larray="";
    for(i=0;i<langs.length;i++)
    if(langs.checked)
    larray=larray+langs[i].id+",";
    larray=larray.substring(0,larray.length-1);
    textval.value=larray;
    </script>
    <tr <$strTrimWs(inc("std_nameentry_row_attributes"))$>>
    <td<$if captionFieldWidth$>width="<$captionFieldWidth$>"<$endif$> <$if isInfo$>align=right<$endif$>><$strTrimWs(inc(fieldCaptionInclude))$></td>
    <td <$if isFieldInfoOnly$>colspan="100"<$endif$> <$if captionEntryWidth$>;width="<$captionEntryWidth$>"<$endif$>><$inc(fieldEntryInclude)$></td>
    <td><!– addition –>English<!– end addition –><input type="checkbox" name="ucmlang" id = "English" onclick="boxFunc()">
    <td><!– addition –>French<!– end addition –><input type="checkbox" name="ucmlang" id = "French" onclick="boxFunc()"></td>
    <td><!– addition –>Italian<!– end addition –><input type="checkbox" name="ucmlang" id = "Italian" onclick="boxFunc()"></td>
    <td><!– addition –>German<!– end addition –><input type="checkbox" name="ucmlang" id = "German" onclick="boxFunc()"></td>
    <td><!– addition –>Japanese<!– end addition –><input type="checkbox" name="ucmlang" id = "Japanese" onclick="boxFunc()"></td>
    </tr>
    <$else$>
    <$include super.std_nameentry_row$>
    <$endif$>
    but i'm stuck which include to modify in case of the update metadata form.
    Edited by: user1175496 on Nov 15, 2012 11:13 PM

  • Norwegian language for spell checking in pages

    Where can i donload norwegian language for spell checking in pages ? and how to install it?
    Thanks for any answers...

    Try the links at
    http://m10lmac.blogspot.com/2011/06/norwegian-spell-check-and-dictionaryapp.html

  • Could you please put a fast shortcut in the toolbar to un/check "Allow pages to choose their own colors,..." from Options Content Colors

    could you please put a fast shortcut in the toolbar to un/check "Allow pages to choose their own colors,..." from Options> Content> Colors>

    hello bygabyga, i think this will be a too specific use-case to be added as a general feature into the browser. you can make use of an extension though to get this kind of functionality: https://addons.mozilla.org/firefox/addon/toggledocumentcolors-198916

  • Whenever I open the browser, the check plugins page always opens in a second tab. How can I make this stop?

    Whenever I open my browser, the check plugins page keeps opening, even after I have updated all of my plugins.
    How can I make this stop?

    That is a bug with blocklisting plugins that has been fixed.<br />
    You can correct this issue by forcing the file blocklist.xml to update or wait until Firefox updates the file.<br />
    That update will remove the severity="0" flags in the file that cause the problem.
    See:
    * [/questions/832793?page=2#answer-198407]
    * http://forums.mozillazine.org/viewtopic.php?p=10899869#p10899869
    * [https://bugzilla.mozilla.org/show_bug.cgi?id=663722 Bug 663722] - The blocklist output is including severity="0" where it shouldn't be

  • Spell checker in Pages for iOS - other than english

    Hello,
    I'm trying to get spell checking in Pages for iOS working in another language besides english. My question is- is spell checker in Pages for iOS evailable in any other language besides english? Because it doesn't seem to be- once I change keyboard to another language (even matching system language), Pages stops underlying errors in that keyboard language.
    Thanks.

    marekf wrote:
    is spell checker in Pages for iOS evailable in any other language besides english? Because it doesn't seem to be- once I change keyboard to another language
    Spellcheck/autocorrect follows the keyboard (system language is irrelevant).  Please tell us what language exactly is not working for you.

  • How to remove buttons from standard check in page

    Hi,
    Can any one tell me how to hide buttons from the standard check in page and re-arrange field in UCM. I want to just display Check In, Reset and Quick Help.
    Thanks,
    Abhijit
    Edited by: AbhijijitPr on Sep 6, 2010 2:28 PM

    Hey Tim,
    Even i am facing a similar situation but i have to hide the field on the selection of an option list
    How can i do it through profile and rules?
    Can it be done by using custom includes in the fields?
    if yes how?
    Thanks,

  • My spell check in Pages doesn't correct the letter i to capital I ?

    my spell check in Pages doesn't correct the letter i to capital I ? i have the prefs checked off to automatically check spelling as i type.

    I hate it when people do that. YAY I FIXED IT..... then don't bother to share. You came asking for help, when you found the answer why not help others?

  • Mutilple entries in Revision History of Check-in page.

    Hi,
    In the check-in page for only one of the content item, i see that in Revision history table ,there
    are multiple entries of each revisions of that content item(EX: if i have total 5 revisions,there are 2-entires fro revision 5 and same for other 4-revisions)
    Also, am not able to any other actions also for that content item
    (Ex: Update, checkout, detele revisions so on..
    Any idea on this??
    Thanks

    Hi Sivaraju,
    unfortunately I've got some problem to understand your reply :(.
    I'm not looking for any favourite-values-definitions or a preset of concrete values.
    Please open any report that contains (for example) the char 0material.
    Open the "Select filter-value..."-dialog for 0material and set the drop-down-box at the
    very top to "History" (it should already be set by default).
    You'll notice that the value-list below contains a maximum of 20 entries.
    My question is: Where can I customize this maximum value and set it to - let's say - 50 ?
    Did you get my point?
    Did your answer already address this topic?
    Kind regards,
    Marco

Maybe you are looking for

  • Restrict Access to Page Issue...

    Hi this is my first time on Adobe forums, im regard myself as new to web design, im making my first proper website, for portfolio purposes. www.imaginationwebdesign.co.uk/port2 is the website.. I am using Dreamweaver CS3 coding with HTML / PHP / MySQ

  • Help with Aperture/T2i/iMovie/large file ( 2GB) issue.

    I am having an issue with a very large file (3.99 GB) that I shot with my Rebel T2i. The file imports fine into Aperture, but then it isn't recognized at all by iMovie. I found out that iMovie can only handle files that are 2 GB or smaller. So now, I

  • Menu Bar - Page #

    Hello, I am new to the captivate 3, thus, I am still learning the functionality. I would like your assistance/tips on how I can add Page # of # in the bottom of the menu bar (where the play/pause buttons are located). I am reading the User Guide but

  • Report programming using OOABAP

    hi sdns, I have learnt OOABAP. and now i am trying to implement those concepts in report programming. can anyone provide me some good stuff for practicing them. I want Excercises or else if any one have PDFs do mail me to [email protected] Please do

  • Making Gnome in Arch more like Ubuntu [SOLVED]

    Hey y'all.... I've always been a Kde guy, But I decided to switch to Gnome.... I like Gnome on Ubuntu.... but Arch ofcoarse has Vanilla Gnome which is slightly different..... Does anybody know how to get Nautilus in Arch to be like the one in ubuntu.