my question is simple : is there a way to make a message box with a flow direction right to left ? We are currently doing a project where this would be a nice to have. But title and text are all left to right.
We are using MessageBox.Show and Guide.BeginShowMessageBox.
Thanks,
michal
I haven't tried it myself but you might want to have a look at CustomMessageBox in the Windows Phone Toolkit.
Do you need message box? Maybe you'll create some custom control like message box and add efects?
Related
I am using the wizard control and i was trying to modify the text in the button for the next step also add some buttons inline with it. I have a screenshot here of what it currently by default looks like and what i wanted to achieve.
Current:
Target:
Can you guys please help me how to achieve this?
I asked a friend who did something like that. Ha just deactivated the button (using showNextButton="false") and made one himself.
Making a customized Button will solve your problem for sure.
Your custom buttons should have a controller function that changes the steps of the wizard. this.getView().byId("wizID").nextStep()
I want to know how the pop up windows integrated into websites are built. I am trying to create one for my websites but i don't really know it is created whether they are plugins or not. Any help as to how to go about it.
Below is an example of what i want to do.
You can use hotjar.com to put a feedback box in your page, there is a lot of services that provides this feature, but hotjar gets the job done
Beginner! To make a pop-up like the one you provided, you would need to write backend code (Node.JS, PHP, Python, etc.). But for just a simple info pop-up with a button that activates the pop-up refer to this jsfiddle I created:
https://jsfiddle.net/d706dyg7/1/
$("#whateverid").click(function(){
//whatever code
});
That mean when that element is clicked blah happens.
Hope that helps,
Ben A.K.A BlackSky
P.S. If you want a solution in pure javascript and not jQuery just let me know and I will edit my fiddle!
I know I'm like .. 10 years late. But for anyone still wondering I thought I could be of some help!
If you want to do this using ONLY html and css (using a framework in visual studio like ASP.NET) for example.. here's what I did:
First, I made sure I had multiple "divs" in my code. For me specifically, I had two main ones. The first one whose id="main", and another whose id="popup" with the 'visible' property initially set to 'false' for the popup div.
Then, on whichever event you're looking for (button click for example) you'll simply set main.Visible = false and popup.Visible = true, then you could have more buttons in your popup (yes, no, cancel, confirm, etc.) which do the exact same thing, but in reverse!
The most important thing to make sure of is that you have the 'runat="server"' property in your divs so that you can access them in your CS code
Hope this was helpful! :)
Your looking for something called a modal. Depending how you wrote your HTML there are different ways of approaching this issue.
If your wrote your website in Plain HTML you can use the following tutorial to create one
www.webdesignerdepot.com/2012/10/creating-a-modal-window-with-html5-and-css3/amp/
However if you wrote your website with a library such as Bootstrap they have built in pre made modules that you can attach to your cpde. These can Ben found in the library's documentation.
I create the Application Bar with 4 icon Buttons and 3 normal menus. It's working fine.
But i don't want, the circle around the icon button. How can i remove that.
And another one question is how to see the icon button text in normally. That means i click the more icon that time icon button visible. But i want no using more button and want to see the icon button text. It's Possible.
Please Help Me.Thanks In Advance.
you cannot remove the circle, neither you can "expand" the application bar so you can see the labels of each button. It is simply against the Windows Phone UI.
But as it is .NET, you can easily create your own buttons bar at the bottom of your page. Of course, it might be difficult to implement the UI logic for you menu items so they behave like the native application bar does (you could consider using the build-in application bar for you menu items and set its mode to "Minimized").
But: why would you do all this? In my opinion, apps should follow all UI guidelines and should all look the same (especially when compared to native apps) ;-)
Greetings
I need to display error dialog (with standart red cross image) with message and Ok button.
Message is pretty big (like stack-trace) so I need to display it in scrollable area.
Should I write such dialog from scratch or swing contains something that I can reuse?
upd: found unswer myself http://www.javalobby.org/java/forums/t19012.html
The easiest way is to use TaskDialog framework. You can create all kinds of dialogs including the following:
The exception dialog can be called via
TaskDialogs.showException(e);
See Task Dialog for more details
You can use this component
The source code is all there, you just need to copy and paste code. No need to install a framework.
I have to edit an info bubble on a website to help someone out.
The site is already online and i dont have the ftp login details so i cant download the files and use them locally to test it.
So im having some issues with inserting a logo on the top of the bubble, like a header.
Im also having problems with the code needed to add 'to here' and 'from here' directions at the bottom of the bubble.
Everything else is plain text in the middle of these 2 objects, so thats easy.
Can anyone help me with the header pic and directions code?
I think this demo from google might be what you want:
http://kml-samples.googlecode.com/svn/trunk/interactive/index.html#./Point_Placemarks/Point_Placemarks.Descriptive_HTML.kml.
It does not show actual images, but it shows how to put that kind of HTML in the bubbles.