How can I change the field options on a page edit with taxonomy terms, like week 1 , you have some cck fields configurated a certain way, week 2 you have another set of fields, all displayed by Ajax, so when you are saving a page , it updates a specified ulr content with the term you have selected.
Taxonomy = Week 1
--Some text field content--
Taxonomy = week 2
--Some other field content--
ect..
Thank you
I've been given the answer, "conditional fields" module. YESS!
Related
Using Kentico 11
I have a content only page type with some custom fields. The page types are children of a container page type.
2 questions:
1. How does Kentico determine the field that will be used as the display name (red arrow) once the type is saved?
2. Can I make the display name a composite of two fields (the green arrows)?
Would be a shame to make the user enter the same info multiple times (once for the display name, once for each field that makes up the display).
You can define that name field on the actual page type in the Fields tab directly under the list of field names. There is a dropdown box you will select a field name from. The field has to be a text field and be required to show in that dropdown.
You cannot use 2 fields for that name UNLESS you write a custom event handler to update the information
Is there a trick to opening a document from a categorized view? I have several categorized views in an Xpage. In the View custom control of each I have the Show values in this column as links checked for the first column after the categorized column, but it doesn't seem to work. When I view the page the column values are not showing as links.
MJ
Have you set the "At runtime, open selected document using:" field on the view properties?
I am new to sharepoint 2007. I have a following requirement.
1) I would to create a custom list for employee where they can select the item and fill-out the form and submit.
Example : List --> Hard Disk --> Click --> Create new list -->
List has following fields 1) EmpID 2) Customer name (Text) , 3) Order Date, 4) Qty 5) Price
Once user submit the list then I would like to disable the EMPID field and allow same user to edit the other fields if required.
How can I disable the text field (Empid) in the Sharepoint 2007 ? I would appreciate any other alternate or better idea.
Thanks,
Regards
Vick
I would use jQuery for this purpose. Here is an example that describes how to hide a text field on a SharePoint form. Change the .hide() to .attr('disabled','disabled') and this will disable the text field.
If you need help with deploying jQuery, see this question.
I am not sure its a better idea or not, but for that i used to do for this common scenario
that
fist identify the textbox id in html source (through web browser view source) after that i wrote javascript function to disable textboxes i.e. EMPID or we can do through style sheet and apply style using javascript..
You can create multiple content types for the same list. Have the user fill out the content type that contains the EmpID field (put a link in the LeftNav that sends them to NewItem.aspx with the proper ContentTypeId). Make the default content type the one without the EmpID, so when they go back in and edit they won't see that EmpID field.
The downside to this is that they'll see both content types in the New button dropdown. You can name them in a way that makes sense (New Hard Disk Order, Edit Hard Disk Order)
Content type Events has intro, body and an "event date" field (using Date module). In the Page View I'd like to filter nodes so that only items with an "event date" in the future appear.
Problem is, when I try to add a filter field, this "event date" does not appear in the list.
Is what I'm trying to do possible? Seems simple enough yet I dont see this field, even after clearing all caches etc.
Select the Date: Date (node) filter type. When you select it, the next screen will prompt for which CCK fields to filter by. That's where you'll need to select the event date field.
I got the answer finally , the perfect one and the right one
for views filter content date
extra one module views_attach that enable your content and profile to add with views and allow more solution for you
filter [+] then
from the group selection , select date
then date [node]
then, u show the list of criteria follow steps
then update and save ...
No this is wrong one
filter - > group -> content -> here field which create in content type cck date , must be shown.....
How can I hide a field in a SharePoint alert?
I have a custom event list (Calendar). I have a field (of type Note - aka Multi-line text) whose XML contents I generate manually in an event receiver. All my calendar views use this field as the Title for the Month, Week, and Day views.
I have a web part I include on the page that runs a jquery script that converts the XML title into a background color and mouseover text.
The problem is that this field and its ugly xml show up in sharepoint alerts. If I set the field to Hidden=true then it does not show up in the email, but it is no longer available to select as the Title for the Month, Week, and Day views when creating a new View. This is not acceptable as users need to be able to create views and be able to select this field as the title.
Is there another way to prevent this field from showing up in emails, along the lines of ShowInDisplayForm, ShowInEditForm, etc?
Would editing the fields in the alert template fix your issue?
http://blogs.msdn.com/sharepointdeveloperdocs/archive/2007/12/07/customizing-alert-notifications-and-alert-templates-in-windows-sharepoint-services-3-0.aspx
"To exclude some fields from being rendered in the email, you should include them in the <DigestNotificationExcludedFields> and <ImmediateNotificationExcludedFields> section."
Can you set another field to have that XML and have the jquery script run against that field instead? That would leave the Title field to be used normally.