Forum Replies Created
-
Author
-
August 31, 2012 at 1:44 pm in reply to: Bad formating when moved to local asp.net site Bad formating when moved to local asp.net site #7348
Hi Peter,
I have followed the example and adds ‘classic’ css:
<link rel="stylesheet" href="../jqwidgets/styles/jqx.classic.css" type="text/css" /> <link rel="stylesheet" href="../jqwidgets/styles/jqx.base.css" type="text/css" />
and uses the theme classic in my component:
$("#jqxComponentList").jqxListBox({ selectedIndex: 3, source: source2, width: 350, height: 350, theme: 'classic' });
I get the right color but I do not get this great looking 3D effect in the selected line.
Am I doing something wrong?
Thanks in advance
SoerenAugust 31, 2012 at 8:19 am in reply to: How to reassign source to tree How to reassign source to tree #7334It worked like a charm 🙂
Thanks Dimitar
Perfect, thanks 🙂
Please disregard this question, I have posted a new one regarding loading contents dynamically.
Hi Dimitar
Is this a valid approach given that I have many widgets I wish to view based on the selection on a treeview:
function makeDivActive(divName) { contentCell.empty(); contentCell.txt = "<div id=\"" + divName + "\"/>"; }
And then assign the new active control to tag identified by ´divname´.
Thanks in advance
August 26, 2012 at 9:56 am in reply to: How to set keyboard focus to widget How to set keyboard focus to widget #7153Yes, my intention was to implement a TAB-handler. We are so close to giving the user a desktop environment expericence in a browser with these cool widgets, so it is sad, that this is not possible.
Having to click each widget is however not desktop environment expericence. We must hope they get there soon 🙂
/Soeren
August 24, 2012 at 7:13 am in reply to: Bad formating when moved to local asp.net site Bad formating when moved to local asp.net site #7090Okay, but please see if you can reproduce this situation:
If I run your grid from your site using ?classic you get 3D buttons and headers.
If I run the very same code from the demo part of your distribution using ?classic I dont get 3D
August 24, 2012 at 6:44 am in reply to: Bad formating when moved to local asp.net site Bad formating when moved to local asp.net site #7086Yes I understand and getTheme does the same when designating a theme in the url – it refers to all the theme files in the distribution. But okay, I think I can find another solution and I wont bother you again with this issue.
August 23, 2012 at 2:32 pm in reply to: Bad formating when moved to local asp.net site Bad formating when moved to local asp.net site #7056Hi Peter,
I have looked at it and what I found was:
theme: 'energyblue'
And I tried to play around with various styles, but the problem persists.
Besides all I want is the same look&feel as your demo examples.
I relate strongly to your demo examples since they by far are the most thorough documentation.
Best regards
SørenAugust 23, 2012 at 1:28 pm in reply to: jqxDataAdapter documentation jqxDataAdapter documentation #7053I have managed to find out that the xml is based on the OData standard.
See more her:
Just for future references 🙂
August 23, 2012 at 1:20 pm in reply to: Bad formating when moved to local asp.net site Bad formating when moved to local asp.net site #7052Hi Peter
I have managed to set the theme both hardcoded and as a parameter as interpreted by getTheme helper in your demo, but it did not have any effect on the issues above.
Besides, I have copied your code byte for byte so if no theme was the problem in my code it would have been the case for you as well.
I have noticed that your code when running locally (IE9 end FF14) has the same issue with flat buttons and headers but not with the font issue in the popup.
I think my issue is related to this line:
<body class='default'>
because locally I cannot localize any class of that name.
Can you explain me what it does and can it have any relations to something local on your server?
August 23, 2012 at 11:18 am in reply to: How to set keyboard focus to widget How to set keyboard focus to widget #7047Hi Peter,
I tried
$(‘#jqxTree’).focus();
after tree creation (in document.ready) but it did not have any affect.
Thank you so much
-
AuthorPosts