Windows 7, Linux, Mac, JavaScript, jQuery, ExtJs, Angular, .NET, Java, Android, iOS, php, mysql, lucene and more...
Showing posts with label Jquery UI. Show all posts
Showing posts with label Jquery UI. Show all posts
Sunday, October 15, 2017
Angular JS drop-down first options vs jQuery UI.
Hi All
Recently I had an issue with angular-js dropdown which had ng-repeat to load it's options from a web service. Problem was I always could see an empty option even if I dont need that empty option. I needed to show the first real option to my users.
So I googled and see lot of answers but non of them did not work for me. My case was really rare.
My app was kind of converted app from jquery mobile to angular. So I had some jQuery mobile reference as well. Also I realised that my drop down had jquery mobile styles as well.
So all I did was removing all references to jQuery mobile js and jQuery mobile css. So everything works now.
So the conclusion is
1. If you have any problems with angular data-bindings please remove jquery mobile references.
Tuesday, July 21, 2015
Set Jquery-ui-autocomplete select menu height
This was really simple than I thought. You just need to add following CSS lines to your style sheets.
ui-autocomplete
{
max-height: 250px;
overflow-y: auto;
overflow-x: hidden;
}
Hope this will help you.
ui-autocomplete
{
max-height: 250px;
overflow-y: auto;
overflow-x: hidden;
}
Hope this will help you.
Subscribe to:
Posts (Atom)
-
Recently I purchased nord-vpn for testing. But I could not use their service due to a technical reason. So I wanted to cancel and get my mo...
-
Hi All I couldn't debug my C# class library project due to this issue for last few month. So this is the fix. 1. Right mouse click on...
-
Lucene - Previous 1. Add Lucene.net to your application. Copy Lucene.Net project to your solution folder or copy Lucene.Net.dll to your ...