Hello,
I gote some problems to get the dateformat right.
After my date field has lost focus I want it to show like:
dd-mm-yyyy but it has to be saved in the database like
yyyy-mm-dd. .
This is what i have so far:
$("#birthdate").datepicker({
changeMonth: true,
changeYear: true,
altFormat: 'yyyy-mm-dd'
});
Now it's...
In a fairly graphics intsensive application the requirements state that it should default to full screen mode even though the application is running under Windows. I know many games do this but I find it annoying. The default IMO should be to open in a window rather than full screen mode. I am proposing the first time the user runs th...
A requirment has been given that the desktop icon change colors "to fit well" with the users chosen desktop color. Not only is that a vague requirement but it is not the standard way that applications behave. The correct solution is to provide a number of icons which the users can select from. I just think its a bad idea. We are in t...
In my experience, UI programming is very time consuming, expensive (designers, graphics, etc) and error prone - and by definition UI bugs or glitches are very visible embarasing.
What do you do to mitigate this problem?
Do you know of a solution that can automatically convert an API to a user interface (preferably a Web user interface?...
Update: this question refers to an older version of Zend Framework. To see how to integrate jQuery with a Zend Framework 1.9.4 (1.8+) application refer to this question.
I think I understand the basic concepts, but I must be going wrong somewhere. I'm trying to integrate jQuery, jQuery UI, and jQuery Themes into my Zend Framework appl...
Two interfaces of Reporting Engine are possible:
sql based for sql based user
non-sql Based interface for normal non-sql friendly users
Database is very large so how do I go about thinking about 2) option that is Non-sql based interface
How would it be ?
...
Hi there,
Can anyone help, I have a asp.net button but recently replaced it with a standard html button ... What i need to do is postback to an asp.net page and ensure a method is called
the button before was an asp.net button so i had this event
Protected Sub btnCancelar_Click(ByVal sender As Object, ByVal e As System.EventArgs)
...
Hi there,
I have been designing with jquery and using the jquery UI widgets .. but always been designing for 1024 x 768 ...
Is there any tricks or plugins (preferably that work with jquery UI) to automatically resize elements of my interface ...
that way when somebody views it at a higher resolution it doesn't look so small..
Anybody...
Does anyone know about an opensource list of most common error messages?
My motivation for this question, although I am adept at writing code, English is not my mother tongue.
And, such a list (somewhat, like all those free icons on the net) will shorten the last stages of my development, And good (and fun) error messages are part ...
Hi my name is carlos Im from Brasil.
Is it possible to disable the buttons that change the date on the TMonthCalendar(vcl native)?
thanks a lot
carlos
...
I'm trying to mimic the default emboss that automatically gets applied to navigationItem.title, as well as many other UIKit controls.
As seen in this screenshot's title ("Table Cells"):
I'm essentially trying to add 2 UILabels to the navigationItem.titleView, however the UILabels just show up as flatly drawn and it really just doesn'...
Hi folks,
I've been looking for ways to improve the overall attractiveness of my iPhone applications. A majority of the functionality happens in UITableView. I think I can start by adding subtle gradients to UITableViewCells, as that seems to improve the feel of the app by an order of magnitude. Selecting the appropriate fonts/sizes hel...
EDIT > SOLVED: It turns out that I had set all of the UI elements' font properties to be 14pt Arial, but not the usercontrol itself, so when it was drawing it on the form, it was resizing it all. Changing the usercontrol's font size to 14pt Arial, and then repositioning/resizing everything fixed it.
I started working on the UI for an ap...
What do you web developers think? Should we disable pasting in masked password boxes in our web applications or not. Could this be a security hole or cause confusion or unwanted results? This is probably a question about user experience and not so much about programming.
...
The javascript jQuery code below works, except I would like to add 2 features to the button's state.
When a user clicks one of the buttons, the other button that was not clicked gets a new class (look).
Both button's state should change to unclickable.
[div id="1" class="__button_image"] [/div]
[div id="2" class="__button_image"] [...
UIActionSheet has a showFromTabBar: method
- (void)showFromTabBar:(UITabBar *)view
But how to get a reference to the UITabBar?
I'm currently using
UITabBar *tabBar = [self.tabBarController.view.subviews objectAtIndex:0];
I've also seen someone traversing tabBarController.view.subviews and looking for the UITabBar instance. Is th...
Is it better to keep both? Chose one? What criteria would you use to select one over the other? If you had a button you had to name, rather than the menu to store this, would "Export is shorter than Save As" be sufficient criteria to select one over the other? Edit: Would already having a File >> Save or a Save button influence your ...
Hi folks!
This inquiry is rather difficult for me to properly phase, but I'm going to give it a shot either way.
I'm currently trying to figure out how to set my UITableView's to scroll over a background, and not within their own bounds. What I mean by that, is if you look at the Tumblr application, screenshot here: http://dl-client.g...
I need to implement input validation throughout my winform app. THere are many different forms where data can be entered and I would like to not have to go control by control by form and create isValid etc per item. How have others dealt with this?
I see that most related posts deal with Web Apps and/or mention Enterprise Library Va...
Hi,
I need to show a div over the some items in a sortable list.
This div shows information and needs to be use as handle for the sortable item.
The problem is that this div is located outside the items (at the end of the body), and since sortable handle option only looks for child elements (because it uses a .find() to look for) it's ...