I have a .net 3.5 web form with an ajax combo box and a text box inside it. The bombo box is bound to a SqlDataSource.
My requirement is to show/hide the text box depending on the text of the selected item in the combo box. If a particular string, say 'xyz', appears in the text of the selected item, the I will make the text box invisible. I enabled the AutoPostback, made the text box disappear in the SelectedIndexChanged event, and everything worked fine.
However, when users enter their own texts (which are not in the list items), I am unable to show / hide the text box. I've tried the TextChanged event but nothing happens. It seems the event is not trigger after I enter a new text and locate the focus to other place.
is there a way to prevent the user ented text from being inserted into the bombo box?
In internet exporer 8, every time the dialog box is opened the textbox controls increase in size! None of the other items do: label and button. If it makes any difference - dialog is created when a certain item is selected within a select list.
Th dialog is themed from the theme roller site and the controls styled using an external css file.
My admin set innodb_buffer_pool_size=512M, innodb_log_file_size=128M, and innodb_log_buffer_size=1M although in mysql query show global variables its showing what the value is set. When i restart my system also its showing what we set the data.(It means we set log file buffer file size to max and its working fine.) but when i try to upload a file of 58 mb again its throwing error as The size of BLOB/TEXT data inserted in one transaction is greater than 10% of redo log size.
however when i edit the text as follows (making it bold and red in another gridview containing rich text editor)
i get the following (as a formatting result in the second grid view)
however when i view in the first gridview to display the tooltip i get the following result display the tooltip as rich text
although many people say that jquery is "very easy", i have really HARD TIME using it and i tried more than 10 times, always failed to make any use of it. i know it is my bad, but if you know other way not jquery
I have asp:Table with number of asp:Label inside asp:FormView, it represents short stats info.I need to set Label.CssClass to "red" if it's text isn't "0".Currently I do this on FormView.DataBound event. But think that it's better to use JavaScript and probably jQuery. How can I do that?
I'm using a lot of LinkButtons in my web application with text and images inside them. All LinkButtons are set with a ToolTip and all images inside the LinkButtons are set with an alternate text.
The problem is that in Internet Explorer the alternate text of the image is shown instead of the ToolTip of the LinkButton. In Firefox this problem doesn't exists, it always show the ToolTip of the LinkButton.
Access to my application is controlled by user accounts. I would like my text labels to change within my pages depending on the user logged in. This needs to be easily managed.
What is the best way to achieve this? Would using the resources file work?
The dataGrid view is being populated. The Autogeneratedcolumns is set to false. How do I change the colour of a cell of a row depending on the text? i.e. Row 2, column 5 says "Failed". I would like to change the colour of that cell to be red.
I have 1 drop down, 1 text field and 1 command button i.e. "Search". Dropdown contrains following values
Type1 Type2 Type3
In textbox user will enter numeric or alphanumeric value
Here I want to check if 'Type1' is selected so user can enter only numeric value between 1000 and 2000, otherwise display some message "Entered value is not valid for "Type1". I want to display this message thru required validator error message property
If user select 'Type1' and 'Type2' then user can enter any alphanumeric value other than 1000-2000 numeric range.
I want to implement thru Search button or once user leave the textbox after entering value. Here I want to display message.
I want if the header of a particular column contains a word "S", the header and row turns red. I used following code to make header red and it works fine. How to make it such that the rows also turn red if condition is met ? I cannot hardcode in columns since the Gridview is autogenerate colums as data structure keeps changing.
Protected Sub GridView1_DataBound(ByVal sender As Object, ByVal e As System.EventArgs)Dim HeaderRow As GridViewRow = GridView1.HeaderRowFor Each c As TableCell In HeaderRow.CellsIf c.Text.EndsWith("S") Then c.BackColor = Drawing.Color.OrangeRed End If Next End Sub
I have following function for opening the modal dialog using JQuery.I want to have the set the label 'Delete all items' dynamically by passing parameter to the bello function as viewdialog(deletebuttonCustomtext).deletebuttonCustomtext contains the value "DeleteData"
but when i replace the line: 'Delete all items': function() {
with deletebuttonCustomtext: function() { [code]...
I have a GridView which contains 3 fields( Label Fields) , I want to open a popup window through ajax when any one cell of Grid is clicked or Text of Label control is clicked.