-
Notifications
You must be signed in to change notification settings - Fork 235
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Empty combobox size issue #136
Comments
That is obviously a bug, thanks for reporting :) |
Do you know when that will be coming out? Also when the item is simply blank the area to select it is very On Wed, Jun 11, 2014 at 6:55 PM, Mikle notifications@github.com wrote:
|
Not sure yet about the release date - probably the middle or the end of the next week. About this bug - I will simply force the combobox to have a proper size even if there is no value or if it is empty - its just the same case actually. |
Great! Thanks for being so responsive
|
Sorry for the delay, I have committed the fix for this issue. |
No worries, you are great! I will let you know if i find anything else :) On Jun 26, 2014, at 10:58 AM, Mikle notifications@github.com wrote:
|
You can now download the v1.28 update: And thanks again for pointing out this issue! |
having this error when trying to use a notification. It runs a few times than crashes JRootPane for PopupLayer cannot be found code is below:
|
I'll investigate this issue, thanks for reporting. |
If you need more information please let me know. It could also be I'm not implementing it properly
|
I'm not sure yet, will be checking it tomorrow from another notebook. Will say if something is wrong then. For now your code seems legit, I guess there might be some issue with timed notifications. |
I have tried a few cases with the notification code you have provided and didn't see any issues. public class NotificationTest
{
public static void main ( final String[] args )
{
WebLookAndFeel.install ();
TestFrame.show ( new WebButton ( "show", new ActionListener ()
{
@Override
public void actionPerformed ( final ActionEvent e )
{
final WebNotificationPopup notificationPopup = new WebNotificationPopup ();
notificationPopup.setIcon ( NotificationIcon.mail );
notificationPopup.setDisplayTime ( 500 );
notificationPopup.setContent ( 0 + " unread email messages" );
NotificationManager.showNotification ( notificationPopup );
}
} ), 250 );
}
} It works as intended, no exceptions or any other problems. So here are the things you might describe to help me find the issue if it exists:
And it would be really nice if you can provide a small code example that clearly represents this issue (you might find the source of this issue while trying to create such example). |
I have the WEBLAF installed and thought that was going to fix the issue, but it ran for several iterations and than failed again. I am using java mail and can provide the entire class if you could provide a private contact information as their is sensitive information in the code. On Jul 3, 2014, at 3:35 AM, Mikle notifications@github.com wrote:
|
Sure, you can send the code directly to my email address: mgarin@alee.com In any case - whether you install WebLaF or just initialize managers shouldn't matter, that affects only the UIs of Swing components - whether or not they are using Web-UI or not. The rest of WebLaF should function the same way as it does with install. |
Error happened due to Swing hidden Frame being used as notifications container. |
Is there a way to have the calendar start on saturday instead of monday? |
Use method |
trying to run this from a web date field and can't seem to get it to work. OpenDateTextBox.getCalendar().setStartWeekFromSunday(true); is not working On Wed, Jul 16, 2014 at 4:48 AM, Mikle notifications@github.com wrote:
|
Well, you were asking about calendar, not I have added a small improvement which will be available starting from v1.29 - you will be able to set calendar customizer into final WebDateField dateField = new WebDateField ();
dateField.setCalendarCustomizer ( new Customizer<WebCalendar> ()
{
@Override
public void customize ( final WebCalendar calendar )
{
calendar.setStartWeekFromSunday ( true );
}
} ); |
I have a version of 1.29 would it be in that or another build? On Wed, Jul 16, 2014 at 11:29 AM, Mikle notifications@github.com wrote:
|
No, of course not in the one you have - I didn't even commit this change yet. |
Oh ok. Will you please send this information over when build the information.
|
I will make a note in each issue fixed in or related to the release, including this one. |
I am working to load a combo box and the only value in it is blank. the combo box shows up in a very small line, is there a way to make it stay the normal size?!
The text was updated successfully, but these errors were encountered: