Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
194 views

django filefield issue

filefield works just fine in the admin, but in a template nothing is uploaded upon submit. the form comes back with a "required" error for the filefield. the paths seem to be right, and if they ...
1
vote
2answers
5k views

How to get form field value in onclick event

I am using this article of architecture http://blog.extjs.eu/know-how/writing-a-big-application-in-ext/ in my code : I have this Application.DashBoardForm.js in this i want to pass the value of the ...
1
vote
1answer
127 views

How can I pass a User model into a form field (django)?

Basically, I need to use the User's password hash to encrypt some data via a custom model field. Check out the snippet I used here: Django Encryption. I tried this: class MyClass(models.Model): ...
1
vote
2answers
2k views

SharePoint 2007: Formatting a FormField

I'm trying to display the page owner and last modified date on the footer of a SharePoint master page for a publishing site. On my master page I currently have: <SharePoint:FormattedString ...
0
votes
0answers
17 views

use extjs TreeGrid as a form component

I would like to use Customised extjs TreeGrid as form component. I wrote TreeGrid.getValues() method based on chekboxes and inputs, but since it has GridView as proto - realisation seems vague to ...
0
votes
1answer
96 views

getting contents of SharePoint:FormFields

I'm sorry if this is really obvious, however, I haven't found ANYTHING that explains it... using a SharePoint:FormField. I've found countless resources on how to do the following in HTML, but when ...
0
votes
0answers
124 views

extjs tooltip exclamation icon for a form field

How can I modify the look and feel for an ExtJS tooltip for a numberfield so that it shows up with an exclamation icon before the message on the tooltip itself. Currently, it only shows a validation ...
0
votes
1answer
93 views

JavaScript for (pasting!) only numbers in a textfield

I'm using this script to have a textfield with only numbers, and it works just fine, only my users cant past a number, and as I need 7+ digits, I guess a lot of people will be using copy paste. I saw ...
0
votes
0answers
49 views

Adding a control just to the right of SharePoint:formField Controls?

In SharePoint Designer 2007. I have a customized List Form (newform). I'd like to add a little custom search image button control just to the right of a SharePoint:formfield control. The ...
0
votes
1answer
200 views

Sharepoint FormField validation

I have <SharePoint:FormField ID="id" runat="server" ControlMode="New" FieldName="FName" > </SharePoint:FormField> in the webpart, and a asp.net ...
0
votes
0answers
211 views

Joomla 1.6 - Admin Form - Processing grouped checkboxes in Form

I am creating a Joomla 1.6 Admin Component which uses the new JFormField Form to generate input views. For one view and record I have a list of associated records - a multiple choice - which I ...
0
votes
1answer
524 views

how to fill up numbers in a form field via a popup key pad(using Javascript/AJAX)

I have a small project, wherein I need to develop a keypad with all the digits+backspace+decimal (all as buttons). These digits when clicked should populate a form field (say a text box). This keypad ...