Tagged Questions
The custom-field-type tag has no wiki summary.
3
votes
1answer
791 views
Creating Custom Field Types with Additional Column Settings
I am trying to create a Custom Field Type which is same as Multiple lines of text field with the following additional:
It has one extra text box in the Additional Column Settings section when ...
2
votes
2answers
458 views
Saving multiple checkbox meta data WordPress
Code works!
I have two custom post types: Events and Artists. I'm using WPAlchemy MetaBox PHP class , trying to create a metabox with a series of dynamically created checkboxes (i.e. there will be a ...
2
votes
1answer
142 views
How to access other model instance fields from to_python in a custom Django field implementation
How can I access the model instance from a custom Django model field's to_python call?
When I overrode pre_save, for example, I had model_instance as one of the arguments.
to_python only receives the ...
1
vote
1answer
73 views
Save value of custom field type
I am new to SharePoint developement and have a few startup problems which I hope you will help me with.
I am trying to make a custom field type and I am using WPS builder to create the project. Right ...
1
vote
1answer
171 views
sharepoint 2010. SPField set control for edit and preview
I need to add custom editor for my created sharepoint field.
How can i set control both for edit mode and preview mode. Will be two different controls!
I found that i can override ...
1
vote
2answers
319 views
Custom SharePoint JavaScript field type
I'm in the need to create a custom field type that renders like a LinkValue field. Instead of forwarding the browser to a different page, I would like to execute JavaScript code (in order to use ...
1
vote
2answers
717 views
SharePoint: Problem with programatically updating custom field type column value [closed]
I have created a custom field type(say 'Sample') in SharePoint which is based on 'multiline text' field type. Now I have created a new column(say 'test') of type 'Sample' in a list. I created some ...
1
vote
1answer
772 views
How to modify how the custom field looks on sharepoint list (allitems view)?
I'm trying to write a custom field that is representing the time spend on the task. The field derives from NumberField (number is representing minutes) but I want to display it on the list as HH:MM ...
1
vote
0answers
138 views
Is the OnAdded field event fired when a content type is added to a list
Say I have a custom field type called MyCoolField that I have deployed in a solution. This solution also contains a an SPEventReceivers that has overridden ItemAdded, ItemUpdated, and ItemDeleting. ...
1
vote
1answer
3k views
Problem displaying custom property values for SharePoint custom field types
I'm trying to create a custom field type in SharePoint (WSS 3.0) that has custom properties. I have created my fldtypes*.xml file based on the SDK docs and this blog post and it seems to render fine ...
0
votes
0answers
83 views
ListItemFieldValue Alternative for Custom Field Type Definition Sharepoint 2010
I'm trying to get my Custom Field to work. Is an easy Custom Field that shows only a AssetPicker to load data.. The problem i'm encountering is with the creation of NEW item.. During the Edit the ...
0
votes
0answers
130 views
Custom Field in Sharepoint 2010 with multiple Link and Asset Picker
I'm looking for a solution for a problem...
I need a Sharepoint Field wich contains multiple link, stored in a simple way (like ';' separation).
Does anybody know if there are project 'bout custom ...
0
votes
2answers
368 views
Wordpress CUstom Fields Default Fields in Admin View
I have written a ton of custom fields to use with a template, but they are not showing up immediately in the admin view of the Page/Post and I have to manually type in all of the custom field names.
...
0
votes
1answer
344 views
Sharepoint RenderPattern and “neutral” DateTime values
I created a custom Sharepoint field and a custom renderplattern for it:
<RenderPattern Name="DisplayPattern">
<Column Name="Date" HTMLEncode="FALSE" Format="DateTime"/>
...
0
votes
1answer
327 views
How to disable commas on Integer field in Edit item screen
I have a field defined as this:
<Field Type="Integer" DisplayName="BŠS" Required="FALSE" Commas="FALSE" Group="CRPU grupa" ID="{f8ae007e-df89-4149-8318-a79673cec338}" ...
0
votes
1answer
238 views
When is the formfield() method called in Django?
This is a question on making custom fields in Django. I'm making a field called EditAreaField, which inherits from TextField. Here's what my code looks like:
class EditAreaField(models.TextField):
...
0
votes
4answers
3k views
How would you recommend adding an image as a custom field in WordPress?
I need to add an image to each page in WordPress.
I don't wish to insert it using the WYSIWYG editor, I just need the url as a custom field, which I later use in the template.
I tried using the CFI ...