I would like to show an image tooltip dynamically via server side code.
For example, when user make a selection in a combo box, i would like to load dynamically a text into an image ToolTip, then automatically show (without the user must move curors on image).
Is it possible ?
Thanks
Related
I created an HTML canvas where a user can sketch a floor plan out.
Currently the user has to
Fill out a form (https://www.xmfg.com/cubes/request-for-quote/)
Click on a link to get to the canvas so they can do a quick sketch (Prototype:http://www.xmfg.com/cubefloorplan/)
Save the image
Go back to the form to attach the image
Submit the form
I want to make it easier and I don't know if this is possible or not using Wordpress' ContactForm7 plugin.
Is there a way to make it so that after the user draws on the canvas, they can click a button that will create the image and have it automatically attach to the form vs having to save image and then browse to look for the image?
I want to show a moving loading circle or some image with text"loading", it must be displayed on click of the save button of form. It must stay on the form till the values are going from client side to server side.
I have my form code in jsni.
help me with the css of it that how can i add the effect to the div of the form.
My ASP.NET application allows the user to create their own screens. They can, for example, drag controls like textboxes, combos, etc and place them on the desginer. Now, they want to group specific controls in a box. For example, all the Basic information such as User name, address, age ,DOB etc should be surrounded by a single box (like..group box control). The code on runtime, dynamically places all these controls to create a page.
I tried to achieve this using a Panel control with a black border. This works fine, but when I add a background color to the panel, I no longer see the controls inside the panel. They are hidden.
Is there any good to achieve this. Please help.
I'm a noob to asp and I am trying to show a label control if there is a message populated dynamically, otherwise hide the label. This is basically and error message control.
I have applied a css style to the control with a colored background, so if there is no message to display, the user still sees the blank control.
I know how to do this with javascript, just not sure if it's possible within the control.
lbl.visible = (lbl.Text.Length > 0);
Where lbl is the ID of your Label control
On the server side all the controls have a Visible property that determines whether they appear on the page or not. You should be able to use it something like the following:
if (String.IsNullOrEmpty(MyLabel.Text)
{
MyLabel.Visible=false;
}
Attached is the screenshot of the UI that I would like to have in my app. When I click on the listitems on the fragment on the left side I see a arrow pointing(question mark in red) on the list item which was clicked, I would like to know how can we achieve this in UI layout. Any special settings to be set?
I was looking at the same feature.
To implement similar, I'd suggest showing an image on the selected item in the list, this would require code rather than Layout XML, It would be controlled by the list fragment when an item is selected. That way you get the visual effect that the two fragments are related via the arrow image.
Did you end up giving it a go for yourself?