Questions tagged [field-description]
34 questions
26
votes
4 answers
SQL Server - Can you add field descriptions in CREATE TABLE?
I can see plenty of posts about where the field description extended property lives and how I can get it, but nothing about adding these at the CREATE TABLE stage.
I'm dynamically creating tables so dynamically adding field descriptions would be a…

Mike
- 261
- 1
- 3
- 5
21
votes
2 answers
Add rich text format functionality to django TextField
I have a django model which contains a description field:
class Product(models.Model):
name = models.CharField(max_length="125")
description = models.TextField()
class ProductForm(ModelForm):
class Meta:
model = Product
def…

Shiva Krishna Bavandla
- 25,548
- 75
- 193
- 313
2
votes
1 answer
PALANTIR-FOUNDRY: How can I add a description for a dataframe in a transform?
I am producing a dataframe through a transform. In that transform I am able to add Column description the usual way:
out_all.write_dataframe(df, column_descriptions=mycols_dictionary)
My question is, can I add a dataframe description in a…

Emmanouil Angelakis
- 65
- 3
2
votes
2 answers
How to access the description of a svg element in js?
svg elements can have descriptions as described here
https://developer.mozilla.org/en-US/docs/Web/SVG/Element/desc
Assuming I got the handle of the circle via getElementById, how can I access the content of the tag?
Adding an id to the tag…

javanoob
- 163
- 1
- 1
- 10
2
votes
1 answer
Snippet Description is not displayed in Google Plus Post (Android)
I used following code to share post on google plus in android app. But It does not shows description of snippet.It shows everything except description.Is there any reason of this?
Intent shareIntent = new PlusShare.Builder(this)
…

Ponting
- 2,248
- 8
- 33
- 61
1
vote
1 answer
protobuf description .proto file
i am new in protobuf . i want practice an simple example for me with description in protobuf.
I have a .proto file in which a message is defined. Now, using the descriptor, I want to read and display the entire part of this file line by line. but…

hossein
- 13
- 3
1
vote
0 answers
goswagger setting a reference for the field
i have a hypothetical code
// swagger:model Type
// enum:none,offshore,international
type Type int
//swagger:model VatExemption
type Model struct {
// The Model UUID.
// Example - j290f1ee-6c54-4b01-90e6-d701748f0851
// swagger:strfmt…

mikr
- 43
- 1
- 6
1
vote
1 answer
I have a DLL program and am trying to update it with Descriptions but can't get them to work
I have a DLL program that I wrote a few years back and am trying to update it with Descriptions but can't get them to work.
Here is my code:

Billy Thacker
- 11
- 2
1
vote
0 answers
Variation Description
Hi I would like to ask how to Echo the variation product description. I would need to echo it depending on variant chosen. I have a working code to echo short descriptin of the curent product like this
add_action(…

Robert Zubor
- 11
- 1
1
vote
2 answers
Active directory delete description and office fields through powershell
I have a list of users in active directory to which I have to remove the description and office fields. how can i do through poweshell? I try this but not work.
My code path is ok
Import-Module ActiveDirectory
$Users = Import-csv…

Marco Luigiano
- 11
- 2
1
vote
0 answers
Wordpress : how to allow PHP in tag or category description?
(Sorry for my bad english, I'm french)
I would like to add PHP code in category/tags description field (Wordpress).
What can I add in my functions.php file ?
In fact, I would like to run shortcodes inside this field. So I put this code in my…

triphop
- 21
- 1
- 4
1
vote
1 answer
How would one go about including a.dll description / company information?
So, over the last few years I've noticed that branded dynamic link libraries ( in most cases ) will include a description and or company name to their assembly. How would one go about including this? It's fairly common, yet It's nearly impossible to…
user11381830
1
vote
0 answers
Adding a small description under Project name - waving portfolio
I would like to add a small description, that appears before clicking on the picture under the project name.
I guess I need to edit the plug in but I don't know what to do exactly. I am thinking of writing the text I want in the description or…

J Dupond
- 29
- 2
1
vote
1 answer
Using PowerShell to list Object Description
I have a CSV file with a list of PC's in my domain. I wanted to get the "Description" Field information from AD for each of the machines listed in AD. This is what I have so far:
Import-Module ActiveDirectory
Get-ADComputer -Filter…
user6015403
1
vote
4 answers
Creating tooltips for each field in Sharepoint form
I want to create tool tips for each part in a form which employees have to fill in a share point web page. When users move the mouse cursor on each field (Title, description, department etc.) the related tip will be automatically became visible as a…

ephieste
- 21
- 2
- 4