i want that when a user selects the file to upload then the text area of file upload control should get disabled,only the browse button should be enabled.i want to prevent the user to edit the path of the file upload control..
I have a text box were people will submit a large amoyunt of text to a field in a database. The text is set out multi line in paragraphs with returns. When the text is saved to the database it saves it as a continuous line of text. how do i save and retrieve it with the returns included.
I have a tab, under that there is a textarea. Now I want to clear the value of the textarea when I am going to another tab.I need javascript function because I made the property of tabcontainer autopostback= false.
I have implemented multilingual in my application. The text display is not proper for different language. For example in Spanish the label text is fully visible but if it will display in french then the text width is getting increased so it is not fully visible and for some other langauge it comes in second line, how to set the width and height according to langaue or is there any generic format to set?
I have a specific requirement of extracting text and images from a specific area in a pdf file.The area might be a selected or highlighted or from a given set of coordinates.
When i went through, all the approaches are to extract images and text entirely from the PDF on not in a specified location. I tried with iTextSharp,Syncfussion,Apose but couldn figure out a better approach for this.
I used ModalPopup Control on this link, [URL]How should I write the code that to close pop up by click the area outside the pop up panel?I use AjaxControlToolkit-Framework3.5SP1
In my text area, I should be able to enter only 72 characters per line. If I use, cols property set to 72, it is allowing more or less number of characters depending on character width.
I have a website (asp.net,c#) on two different servers (same source code). In one page my asp generates a text area, using the same browser when I access one of the site if I press return in the text areas I can start a new line, if I do the same accessing the other website on return the form is submitted!
ajaxcontrol toolkit combobox control, a picture is worth than a lot of words so here is the picif you are not able to view then here is the link
http://flic.kr/p/8Uw29z
the problem is the items text in the combox box is having a square beneath at the second character which is hindering the visibility of the list. but the square is not appearing in the text area.
We are trying to design selection tool for a hierarchical dimension (e.g. org-dept-subdept) in order to query SSAS cube. When user clicks a drop down list, a tree view will pop out for user to select single or multi tree nodes. Ideally it would be like the drop down box used in Excel pivot table when it is connecting to a SSAS cube. If there is any Ajax control that can perform similar function
I know I can use arrayName.length to find out how many items in total in the array there are, but how can I gracefully find out how many items are in a specific dimension? I know I could probably do it in a for each loop, but it would look a little messy, does anyone know of a simple way that I may have overlooked?
We are trying to design a selection tool for hierarchical dimension (e.g. org-dept-subdept) in order to query SSAS cube. When user clicks a dropdownlist, a tree view will pop out for user to select single or multi tree nodes. Ideally it would be like the dropdown box used in Excel pivot table when it is connecting to a SSAS cube.
Possible Duplicate: if i type in textbox 1,3 then checkbox1 and checkbox3 will be disabled not checked
i want to disable checkboxes according to textbox text For example --- if i enter 1,4 in textbox then checkbox1 and checkbox4 will be disabled and even after that when i type 2,3 in textbox then checkbox2 and checkbox3 will be disabled and checkbox1 and checkbox4 will be enabled again
Remember : i wanna use this coding with unlimited no. of checkboxes. How to do this? The code mentioned below can checked according to textbox text --but i want to disabled ony not checked
Protected Sub TextChanged(ByVal sender As Object, ByVal e As EventArgs) Handles MyTextBox.TextChanged Dim separator As Char = ","c Dim allIIDs As New List(Of String) If MyTextBox.Text.Length <> 0 Then For Each strNum As String In MyTextBox.Text.Split(separator) Dim num As Int32 If Int32.TryParse(strNum, num) Then allIIDs.Add(strNum) End If Next End If allIIDs.Sort() For Each control As Control In UpdatePanel1.Controls If TypeOf control Is CheckBox Then Dim chk As CheckBox = DirectCast(control, CheckBox) chk.Checked = allIIDs.BinarySearch(chk.Text) > -1 End If Next End Sub
I'm trying to have a checkbox disable and enable a textbox, within a strongly typed viewmodel.
[Code]....
I couldn't find any way to make a checking the nine2five checkbox to disable the startTime and endTime textboxes (and set values to 9 and 5 appropriately).