jQWidgets Forums
Forum Replies Created
-
Author
-
May 15, 2014 at 11:17 pm in reply to: Todays date not highlighting in yellow background. Todays date not highlighting in yellow background. #54529
I’m not sure what went wrong, but after overriding the .jqx-calendar-cell-today in our css it worked fine for me.
.jqx-calendar-cell-today
{
color: #898989 !important;
background-color: #ffffdb !important;
border: 1px solid #fdc066 !important;
margin: 0 0 0 0 !important;
cursor: pointer !important;
}October 18, 2013 at 3:22 pm in reply to: combobox + autoDropDownHeight – VerticalScrollbar issue combobox + autoDropDownHeight – VerticalScrollbar issue #31024Issue is with only VeriticalScrollbar and i can use the up/down arrow keys to navigate to the bottom of the list in the combobox.
October 18, 2013 at 3:20 pm in reply to: combobox + autoDropDownHeight – VerticalScrollbar issue combobox + autoDropDownHeight – VerticalScrollbar issue #31023Based on selection in first drop down an ajax call will be made and we enable the second dropdown and update the source for the jqxcombobox.
var autoDropDownHeight = (List.length>9? false:true);
$(‘.comboboxComponentSelection’).jqxComboBox({source: List, autoDropDownHeight : autoDropDownHeight });October 17, 2013 at 8:09 pm in reply to: combobox + autoDropDownHeight – VerticalScrollbar issue combobox + autoDropDownHeight – VerticalScrollbar issue #30968The scenario here is i have 2 drops down one is enabled intially and second one disbaled. Once i select value in first drop down we populate the list for second drop down and makes it enable. I’m having issue in the second drop down. So based on my selection in first dropdown the list for second drop down could be small or large. After selecting value from second drop down when it has small list vertical scroll bar will not come for the same drop down when it has large list.
October 17, 2013 at 4:55 pm in reply to: combobox + autoDropDownHeight – VerticalScrollbar issue combobox + autoDropDownHeight – VerticalScrollbar issue #30957I was using JQWidgets 3.0.1 and now i tried with 3.0.3 version, in both cases it is not working.
Can you please suggest a workaround at this time?
-
AuthorPosts