Forum Replies Created
-
Author
-
OK, thank you. It works well
Hi Team,
I also have the same problem. But mine is when I set ComboBox with: ‘100%’, at times it shows well, at times it behaves strangely, sometimes the dropdown button appears at the middle of the ComboBox DIV.
Since it practically impossible to develop an application with fixed widths, please what is your advice Peter ? How can we circumvent this ? I have this ComboBox almost everywhere in my App, and when I downloaded the recent version, it became worstSeptember 18, 2013 at 8:58 pm in reply to: Special Dates with customized class Special Dates with customized class #29190Here is my example
.calendarSpecialDates {
font-weight:bold;
color:#003399;}
var date1 = new Date();
date1.setDate(5);
$(“#eventCalendar”).jqxCalendar(‘addSpecialDate’, date1, ‘calendarSpecialDates’, ‘Special Date1’);September 10, 2013 at 9:33 pm in reply to: Refreshing data with dataBind() method in the latest version Refreshing data with dataBind() method in the latest version #28720Yes, sorry, please this is a mistake
Thanks
Hi Dimitar,
Thanks for your prompt answer. I did what is on the demo of the link that you sent, but there is no reaction
I did this :var cellclass = function (row, columnfield, value) {
alert(value);
if (value==”UNAVAILABLE”) {
return ‘green’;
}
else {
return ‘yellow’;}
}
and at the level of the column I did this :
{ text: ‘Status’, datafield: ‘status’, cellclassname: cellclass, width: 150 }
But there is no reaction, I am using version 8
May 20, 2013 at 6:15 pm in reply to: Getting Tab position, Id or Title before removal Getting Tab position, Id or Title before removal #21459OK, thank you very much
OK thank you. But I have another case. I am adding element to the tree programatically with the the addTo function
if (selectedItem != null) {
var menuName=$("#category").val();
$('#jqxTree').jqxTree('addTo', { label: menuName }, selectedItem.element);
}Can I set the Id of the tag where the element is being added ? For instance like the code above, I just added menuName , I want to set the Id of the corresponding tag also (e.g id=’newMenu’) when the menu element is being added, is it possible
thanks a lot
April 10, 2012 at 7:57 pm in reply to: Customizing windows (and other widgets) Customizing windows (and other widgets) #3321Thanks for your support Peter
-
AuthorPosts